-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.73 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
{
"name": "apply2css",
"displayName": "apply2css",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.88.0"
},
"icon": "images/icon.jpg",
"activationEvents": [
"onLanguage:css",
"onLanguage:scss",
"onLanguage:less",
"onLanguage:sass",
"onLanguage:html"
],
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "apply2css.apply",
"title": "@apply to css"
}
],
"configuration": {
"title": "Apply2CSS Setting",
"properties": {
"apply2css.node": {
"type": "string",
"default": "",
"description": "Node Path and requirement to install `npm install tailwindcss -g`"
},
"apply2css.tailwindcss-config": {
"type": "string",
"default": "",
"description": "TailwndCSS config path"
}
}
}
},
"publisher": "jheng.jie.apply2css",
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"build": "vsce package --out ./dist/"
},
"devDependencies": {
"@types/vscode": "^1.88.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9"
},
"repository": {
"type": "git",
"url": "https://github.com/jheng-jie/vscode-apply2css.git"
},
"keywords": [
"CSS",
"tailwind",
"@apply"
]
}