-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "wordpress-theme-json-css-autosuggest",
"displayName": "WordPress theme.json CSS Autosuggest",
"description": "For WordPress Theme Developers - Get CSS Custom Properties generated via theme.json as part of your CSS autosuggestions",
"version": "1.0.0",
"publisher": "GabrielRose",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "[email protected]:roseg43/vscode-wp-theme-json-autocomplete.git"
},
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/theme.json"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "WordPress theme.json CSS Autosuggest",
"properties": {
"wordpressThemeJsonCssAutosuggest.enable": {
"type": "boolean",
"default": true,
"description": "Enable this extension."
},
"wordpressThemeJsonCssAutosuggest.themeJsonPath": {
"type": "string",
"default": "",
"description": "The path to the theme directory. Leave blank to use the workspace root."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.82.0",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"sinon": "^16.1.0",
"typescript": "^5.1.6"
}
}