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
43 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.47 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
{
"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.2",
"execa": "^9.6.1",
"glob": "^10.5.0",
"hereby": "^1.11.1",
"p-limit": "^6.2.0",
"picocolors": "^1.1.1",
"typescript": "^5.9.3",
"which": "^5.0.0"
},
"scripts": {
"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",
"updatefailing": "node --experimental-strip-types --no-warnings internal/fourslash/_scripts/updateFailing.mts",
"makemanual": "node --experimental-strip-types --no-warnings internal/fourslash/_scripts/makeManual.mts"
},
"workspaces": [
"./_extension",
"./_packages/*"
],
"packageManager": "npm@8.19.4",
"volta": {
"node": "22.16.0",
"npm": "8.19.4"
}
}