-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 3.41 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
62
{
"name": "@github/copilot-sdk-monorepo",
"private": true,
"scripts": {
"build": "node scripts/run-tasks.mjs build",
"build:nodejs": "node scripts/run-tasks.mjs build nodejs",
"build:python": "node scripts/run-tasks.mjs build python",
"build:go": "node scripts/run-tasks.mjs build go",
"build:dotnet": "node scripts/run-tasks.mjs build dotnet",
"build:java": "node scripts/run-tasks.mjs build java",
"build:rust": "node scripts/run-tasks.mjs build rust",
"test": "node scripts/run-tasks.mjs test",
"test:default": "node scripts/run-tasks.mjs test:default",
"test:nodejs": "node scripts/run-tasks.mjs test nodejs",
"test:python": "node scripts/run-tasks.mjs test python",
"test:go": "node scripts/run-tasks.mjs test go",
"test:dotnet": "node scripts/run-tasks.mjs test dotnet",
"test:java": "node scripts/run-tasks.mjs test java",
"test:rust": "node scripts/run-tasks.mjs test rust",
"lint": "node scripts/run-tasks.mjs lint",
"lint:nodejs": "node scripts/run-tasks.mjs lint nodejs",
"lint:python": "node scripts/run-tasks.mjs lint python",
"lint:go": "node scripts/run-tasks.mjs lint go",
"lint:dotnet": "node scripts/run-tasks.mjs lint dotnet",
"lint:java": "node scripts/run-tasks.mjs lint java",
"lint:rust": "node scripts/run-tasks.mjs lint rust",
"format": "node scripts/run-tasks.mjs format",
"format:nodejs": "node scripts/run-tasks.mjs format nodejs",
"format:python": "node scripts/run-tasks.mjs format python",
"format:go": "node scripts/run-tasks.mjs format go",
"format:dotnet": "node scripts/run-tasks.mjs format dotnet",
"format:java": "node scripts/run-tasks.mjs format java",
"format:rust": "node scripts/run-tasks.mjs format rust",
"format:check": "node scripts/run-tasks.mjs format:check",
"format:check:nodejs": "node scripts/run-tasks.mjs format:check nodejs",
"format:check:python": "node scripts/run-tasks.mjs format:check python",
"format:check:go": "node scripts/run-tasks.mjs format:check go",
"format:check:dotnet": "node scripts/run-tasks.mjs format:check dotnet",
"format:check:java": "node scripts/run-tasks.mjs format:check java",
"format:check:rust": "node scripts/run-tasks.mjs format:check rust",
"check": "node scripts/run-tasks.mjs check",
"check:nodejs": "node scripts/run-tasks.mjs check nodejs",
"check:python": "node scripts/run-tasks.mjs check python",
"check:go": "node scripts/run-tasks.mjs check go",
"check:dotnet": "node scripts/run-tasks.mjs check dotnet",
"check:java": "node scripts/run-tasks.mjs check java",
"check:rust": "node scripts/run-tasks.mjs check rust",
"generate": "node scripts/run-tasks.mjs generate",
"generate:nodejs": "node scripts/run-tasks.mjs generate nodejs",
"generate:python": "node scripts/run-tasks.mjs generate python",
"generate:go": "node scripts/run-tasks.mjs generate go",
"generate:dotnet": "node scripts/run-tasks.mjs generate dotnet",
"generate:java": "node scripts/run-tasks.mjs generate java",
"generate:rust": "node scripts/run-tasks.mjs generate rust",
"docs": "node scripts/run-tasks.mjs docs",
"docs:nodejs": "node scripts/run-tasks.mjs docs nodejs",
"docs:python": "node scripts/run-tasks.mjs docs python",
"docs:go": "node scripts/run-tasks.mjs docs go",
"docs:dotnet": "node scripts/run-tasks.mjs docs dotnet",
"docs:java": "node scripts/run-tasks.mjs docs java"
}
}