-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.81 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
{
"publisher": "KalimahApps",
"name": "tabaqa",
"displayName": "tabaqa",
"description": "Extendable and nested settings for VSCode",
"version": "0.0.12",
"repository": {
"type": "git",
"url": "https://github.com/kalimahapps/tabaqa.git"
},
"bugs": {
"url": "https://github.com/kalimahapps/tabaqa/issues"
},
"license": "MIT",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"tabaqa.json"
],
"url": "https://raw.githubusercontent.com/kalimahapps/tabaqa/main/schema.json"
}
]
},
"scripts": {
"compile": "tsc -p tsconfig.json --listEmittedFiles && tsc-alias -p tsconfig.json",
"coverage": "c8 --clean npm run test",
"package": "vsce package",
"pretest": "npm run compile",
"test": "node ./dist/test/run-test.js",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@kalimahapps/eslint-config": "^1.2.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/vscode": "^1.90.0",
"@vscode/test-electron": "^2.4.0",
"c8": "^9.1.0",
"c8js": "^0.5.0",
"eslint": "^9.4.0",
"glob": "^10.4.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5"
},
"galleryBanner": {
"color": "#2c2c32",
"theme": "dark"
},
"keywords": [
"settings",
"nested",
"extendable",
"vscode",
"vscode-extension",
"vscode-settings",
"vscode-settings-extension"
],
"preview": true,
"categories": [
"Other"
],
"main": "./dist/extension.js",
"icon": "logo.png",
"engines": {
"vscode": "^1.90.0"
}
}