-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.27 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
92
93
94
95
{
"name": "koishi-dev",
"displayName": "Koishi Dev",
"publisher": "MaikoTan",
"description": "VSCode extension for Koishi developers",
"version": "0.0.4",
"license": "AGPL-3.0",
"engines": {
"vscode": "^1.77.0"
},
"scripts": {
"vscode:prepublish": "yarn run compile && yarn run convert",
"compile": "tsc -p ./",
"convert": "tsx ./scripts/convert.ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package"
},
"repository": {
"type": "git+https",
"url": "https://github.com/MaikoTan/vscode-koishi-dev.git"
},
"bugs": {
"url": "https://github.com/MaikoTan/vscode-koishi-dev/issues"
},
"author": {
"name": "MaikoTan",
"email": "maiko.tan.coding@gmail.com",
"url": "https://github.com/MaikoTan"
},
"icon": "koishi.png",
"categories": [
"Snippets",
"Linters"
],
"keywords": [
"koishi",
"develop",
"json schema",
"snippets"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": "package.json",
"url": "./schemata/package-json.json"
}
],
"yamlValidation": [
{
"fileMatch": "koishi.yml",
"url": "./schemata/koishi-yml.json"
}
],
"snippets": [
{
"language": "javascript",
"path": "./snippets/koishi.common.json"
},
{
"language": "typescript",
"path": "./snippets/koishi.common.json"
},
{
"language": "javascriptreact",
"path": "./snippets/koishi.common.json"
},
{
"language": "typescriptreact",
"path": "./snippets/koishi.common.json"
}
]
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.20",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"tsx": "^4.7.1",
"typescript": "^4.9.5"
}
}