-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.59 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "kestrel-lang",
"version": "0.0.27",
"description": "A pure, strongly typed functional language that compiles to js",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.js",
"bin": {
"kestrel": "./dist/cli/main.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"gen:parser": "bash ./gen-parser.sh",
"test:watch": "vitest",
"test:w": "npm run test:watch",
"test:run": "vitest --run --coverage",
"ts:build": "tsc --project tsconfig.build.json",
"ts:watch": "tsc --watch --project tsconfig.json",
"ts:check": "tsc --noEmit",
"format:check": "prettier --check --cache ./**/*.ts",
"format:write": "prettier --write --cache ./**/*.ts",
"linter:check": "eslint .",
"build": "npm run ts:build"
},
"dependencies": {
"@babel/generator": "^7.25.0",
"@babel/types": "^7.25.2",
"antlr4": "^4.13.1-patch-1",
"commander": "^11.1.0",
"ts-decode": "^0.0.14",
"vscode-languageserver": "^10.0.0-next.6",
"vscode-languageserver-textdocument": "^1.0.11"
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^8.56.0",
"prettier": "^3.2.1",
"typescript": "^5.3.3",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}