-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.43 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
{
"name": "m68k-lsp",
"private": true,
"scripts": {
"check": "npm run lint && npm run tsc && npm run test",
"build": "npm run esbuild -- --minify",
"build-dev": "npm run esbuild -- --sourcemap",
"watch": "npm run esbuild -- --sourcemap --watch",
"clean": "rm -rf ./client/out/* && rm -rf ./server/out/*",
"esbuild": "esbuild ./client/src/extension.ts ./server/src/server.ts --bundle --outdir=. --entry-names=[dir]/../out/[name] --external:vscode --external:web-tree-sitter --platform=node",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"build-docs": "scripts/conv-directives && scripts/conv-instructions",
"tsc": "tsc -p ./server --noEmit && tsc -p ./client --noEmit",
"test": "jest",
"test-coverage": "jest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"esbuild": "^0.14.27",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"nan": "^2.20.0"
}
}