forked from microsoft/typescript-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"private": true,
"name": "typescript-go",
"version": "0.0.0",
"license": "Apache-2.0",
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "latest",
"@types/which": "^3.0.4",
"adm-zip": "^0.5.16",
"chokidar": "^4.0.3",
"dprint": "^0.50.0",
"execa": "^9.6.0",
"glob": "^10.4.5",
"hereby": "^1.11.0",
"p-limit": "^6.2.0",
"picocolors": "^1.1.1",
"typescript": "^5.8.3",
"which": "^5.0.0"
},
"scripts": {
"postinstall": "hereby postinstall",
"build": "hereby build",
"build:watch": "hereby build:watch",
"build:watch:debug": "hereby build:watch --debug",
"test": "hereby test",
"api:build": "npm run -w @typescript/api build",
"extension:build": "npm run -w _extension build",
"extension:watch": "npm run -w _extension watch",
"node": "node --no-warnings --conditions @typescript/source",
"convertfourslash": "node --experimental-strip-types --no-warnings internal/fourslash/_scripts/convertFourslash.mts"
},
"workspaces": [
"./_extension",
"./_packages/*"
],
"packageManager": "npm@8.19.4",
"volta": {
"node": "22.16.0",
"npm": "8.19.4"
}
}