-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.77 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
{
"name": "td-code",
"displayName": "td-code",
"description": "Editing Thing Descriptions inside vscode",
"version": "0.5.0",
"engines": {
"vscode": "^1.46.0"
},
"icon": "images/icon.png",
"categories": [
"Linters",
"Programming Languages",
"Other"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"*td.json",
"*td.jsonld"
],
"url": "./schemas/TD.schema.json"
},
{
"fileMatch": [
"*tm.json",
"*tm.jsonld"
],
"url": "./schemas/TM.schema.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/arces-wot/td-code.git"
},
"bugs": {
"url": "https://github.com/arces-wot/td-code/issues",
"email": "[email protected]"
},
"activationEvents": [
"onStartupFinished"
],
"publisher": "arces-wot",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"build:schemas": "cp node_modules/wot-thing-description/validation/td-json-schema-validation.json schemas/TD.schema.json && cp node_modules/wot-thing-description/validation/tm-json-schema-validation.json schemas/TM.schema.json && node merge-snippets.js",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"glob": "^7.1.6",
"jsonpointer": "^5.0.0",
"mocha": "^9.2.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0",
"wot-thing-description": "github:w3c/wot-thing-description#bafa33e47c84bb879e1f5a102649cc3bea1ec3ca"
}
}