-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "todolist",
"displayName": "Todo List",
"description": "TodoList TreeView Editor.",
"publisher": "saber2pr",
"license": "MIT",
"version": "0.2.61",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other",
"Notebooks",
"Visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/Saber2pr/vsc-ext-todolist.git"
},
"icon": "assets/logo.png",
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "todo",
"extensions": [
".todo",
".todolistrc"
],
"aliases": [
"TodoList"
]
}
],
"customEditors": [
{
"viewType": "todolist.edit",
"displayName": "TodoList (JSON)",
"selector": [
{
"filenamePattern": "*.todo"
},
{
"filenamePattern": "*.todolistrc"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "todolist.main",
"title": "Todo List",
"icon": "assets/logo.png"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./ && cd web && yarn build",
"watch": "tsc -watch -p ./",
"build": "vsce package",
"release": "standard-version",
"release:app": "node ./release-app.js",
"lint": "prettier --write ./src",
"prepare": "husky install",
"dev": "cd web && yarn dev",
"serve": "node web/server/server.js"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/vscode": "^1.56.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"standard-version": "^9.3.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@saber2pr/vscode-webview": "^0.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"git add ."
]
}
}