-
-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
39 lines (39 loc) · 915 Bytes
/
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
{
"name": "stc-workspace",
"workspaces": [
"crates/stc_ts_file_analyzer",
"crates/stc_ts_type_checker",
"packages/stc-lsp-client"
],
"private": true,
"version": "0.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@types/node": "^14.14.17",
"cspell": "^6.13.1",
"husky": "^6.0.0",
"lint-staged": "^13.0.3",
"rxjs": "^6.6.3",
"typescript": "5.1.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"build": "echo \"Error: not supported yer\" && exit 1",
"watch-lsp-client": "tsc -b packages/stc-lsp-client/tsconfig.json --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/swc-project/stc/issues"
},
"homepage": "https://swc.rs",
"dependencies": {},
"lint-staged": {
"*.rs": [
"rustfmt --"
]
}
}