-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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
{
"name": "properties-editor",
"displayName": "Properties Editor",
"description": "",
"version": "0.1.4",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/kuju63/properties-editor"
},
"preview": true,
"keywords": [
"properties",
"editor",
"extension"
],
"icon": "images/icon.png",
"publisher": "kuju63",
"activationEvents": [
"onCustomEditor:viewType:properties.editor"
],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "properties.editor",
"displayName": "Properties Editor",
"selector": [
{
"filenamePattern": "*.properties"
}
],
"priority": "default"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint",
"test": "vscode-test",
"format": "npx @biomejs/biome format --write ./src",
"package": "vsce package",
"deploy": "vsce publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mocha": "^10.0.6",
"@types/node": "22.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.42",
"@typescript-eslint/parser": "^8.0.0-alpha.42",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^3.0.0",
"eslint": "^9.0.0",
"typescript": "^5.3.3"
}
}