-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "split-elm-bundle",
"version": "0.1.0",
"description": "Split the bundled JS code of multiple Elm programs into one .mjs file per program",
"main": "src/main.mjs",
"type": "module",
"scripts": {
"build": "check && build:type-definitions",
"build:type-definitions": "tsc -p tsconfig.build.json",
"check": "tsc",
"coverage": "vitest run --coverage --threads=false",
"test": "vitest --threads=false",
"format": "nix fmt"
},
"bin": {
"split-elm-bundle": "bin/split-elm-bundle.mjs"
},
"keywords": ["elm"],
"author": "Marc Walter",
"license": "EUPL-1.2",
"repository": {
"type" : "git",
"url": "https://github.com/marc136/split-elm-bundle.git"
},
"bugs": {
"url": "https://github.com/marc136/split-elm-bundle/issues"
},
"dependencies": {
"tree-sitter": "^0.20.6",
"tree-sitter-javascript": "^0.20.1"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@vitest/coverage-v8": "^0.34.6",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}