-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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": "windmillcode-tasks-zero",
"displayName": "Windmillcode Tasks Zero",
"description": "All tasks used at Windmillcode",
"version": "1.91.2",
"publisher": "windmillcode-publisher-0",
"icon": "images/logo.png",
"repository": {
"url": "https://github.com/WindMillCode/tasks-0"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"taskDefinitions": [
{
"type": "windmillcode",
"properties": {
"task": {
"type": "string",
"description": "the name of the windmillcode task"
},
"uuid": {
"type": "string",
"description": "the task uuid"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"shell": true,
"devDependencies": {
"@types/node": "^20.12.7",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"copyfiles": "^2.4.1",
"esbuild": "^0.20.2",
"eslint": "^8.56.0",
"typescript": "^5.4.5"
},
"dependencies": {
"adm-zip": "^0.5.12",
"semver": "^7.6.0",
"tar": "^7.0.1",
"tar.gz2": "^1.0.0",
"uuid": "^9.0.1"
}
}