-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
78
79
80
81
82
83
84
{
"publisher": "KalimahApps",
"name": "tailwind-config-viewer",
"displayName": "Tailwind Config Viewer",
"description": "View Tailwind config for the current workspace",
"version": "0.0.88",
"repository": {
"type": "git",
"url": "https://github.com/kalimahapps/vscode-tailwind-config-viewer.git"
},
"bugs": {
"url": "https://github.com/kalimahapps/vscode-tailwind-config-viewer/issues"
},
"license": "MIT",
"activationEvents": [],
"contributes": {
"configuration": {
"properties": {
"tailwindConfigViewer.workspacePath": {
"default": "",
"description": "Path to the project root directory. If not set, the extension will try to find the config file in the current workspace.",
"title": "Project path",
"type": "string"
}
},
"title": "Tailwind Config Viewer"
},
"views": {
"tailwind-config-viewer": [
{
"id": "KalimahApps.tailwindcss-config-viewer",
"name": "Tailwind Config Viewer",
"type": "webview"
}
]
},
"viewsContainers": {
"activitybar": [
{
"icon": "media/icon.svg",
"id": "tailwind-config-viewer",
"title": "Tailwind Config Viewer"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"package": "vsce package",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"dlv": "^1.1.3",
"module-from-string": "^3.3.1"
},
"devDependencies": {
"@kalimahapps/eslint-config": "^1.2.91",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/dlv": "^1.1.4",
"@types/node": "^22.9.0",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vscode/test-electron": "^2.4.1",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.14.0",
"typescript": "^5.6.3"
},
"keywords": [
"tailwind",
"tailwindcss",
"tailwindcss kit",
"css"
],
"categories": ["Other"],
"main": "./build/extension.js",
"icon": "media/icon.png",
"preview": true,
"engines": {
"vscode": "^1.95.0",
"node": ">=16.0.0"
}
}