-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.02 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.02 KB
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
{
"name": "postcssense",
"displayName": "PostCSSense",
"description": "Intellisense for PostCSS stylesheets with global class support",
"version": "3.1.2",
"engines": {
"vscode": "^1.77.0"
},
"author": {
"name": "Abhay Sharma",
"email": "abhay.sharma@smallcase.com"
},
"publisher": "smallcase",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/smallcase/postcssense.git"
},
"icon": "smallcase-icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "css",
"extensions": [
".css"
],
"aliases": [
"CSS"
]
}
],
"commands": [
{
"command": "postcssense.showClasses",
"title": "PostCSSense: Show CSS Classes"
},
{
"command": "postcssense.setCssPath",
"title": "PostCSSense: Set CSS Path"
}
],
"configuration": {
"title": "PostCSSense",
"properties": {
"postcssense.cssPath": {
"type": "string",
"default": "",
"description": "Path to CSS file that contains global class definitions"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js",
"package": "rm -rf *.vsix && vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/css": "^0.0.33",
"@types/glob": "^8.1.0",
"@types/node": "^14.14.37",
"@types/vscode": "^1.60.0",
"typescript": "^4.3.5",
"vsce": "^2.15.0",
"vscode-test": "^1.6.1"
},
"dependencies": {
"css": "^3.0.0",
"glob": "^10.3.10",
"postcss": "^8.0.0",
"postcss-import": "^15.1.0"
},
"license": "MIT"
}