-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.86 KB
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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "lsif-node",
"private": true,
"workspaces": [
"protocol",
"tsc",
"npm",
"sqlite",
"tooling",
"tsc-tests",
"lsif",
"language-service",
"samples/typescript",
"samples/javascript"
],
"version": "0.6.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/lsif-node.git"
},
"author": "MS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/lsif-node/issues"
},
"homepage": "https://microsoft.github.io/language-server-protocol/overviews/lsif/overview/",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "24.1.0",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"mocha": "^11.8.0",
"rimraf": "^6.1.3",
"shelljs": "^0.10.0",
"type-fest": "^2.19.0",
"typescript": "^6.0.3"
},
"scripts": {
"postinstall": "npm run symlink",
"symlink": "node ./build/bin/symlink.js",
"update-lockfiles": "npm install --package-lock-only --ignore-scripts && node ./build/bin/all.js install --package-lock-only --ignore-scripts --workspaces=false",
"check:isolated-lockfiles": "node ./build/bin/all.js ci --ignore-scripts --workspaces=false --dry-run",
"compile": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "node ./build/bin/all.js run lint",
"clean": "node ./build/bin/all.js run clean",
"test": "cd tsc && npm run test && cd ..",
"test:configs": "node ./build/bin/testConfigs.js ./configs",
"cleanAll": "git clean -xfd . && npm install && npm run compile && npm run test",
"audit:all": "node ./build/bin/all.js audit --workspaces=false",
"audit:all:fix": "node ./build/bin/all.js audit fix --workspaces=false"
},
"allowScripts": {
"better-sqlite3@13.0.3": true
}
}