-
Notifications
You must be signed in to change notification settings - Fork 582
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "typescript-go",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "0.0.0",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
"TypeScript",
"Microsoft",
"compiler",
"language",
"javascript"
],
"bugs": {
"url": "https://github.com/microsoft/typescript-go/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/typescript-go.git"
},
"devDependencies": {
"@types/node": "latest",
"@types/which": "^3.0.4",
"chokidar": "^4.0.3",
"dprint": "^0.49.1",
"execa": "^9.5.2",
"glob": "^10.4.5",
"hereby": "^1.10.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",
"test": "hereby test",
"api:build": "npm run -w @typescript/api build",
"extension:build": "npm run -w typescript-lsp build",
"extension:watch": "npm run -w typescript-lsp watch",
"node": "node --no-warnings --conditions @typescript/source"
},
"workspaces": [
"./_extension",
"./_packages/*"
],
"packageManager": "[email protected]",
"volta": {
"node": "20.5.1",
"npm": "8.19.4"
}
}