-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.11 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
{
"name": "css-vargraph",
"displayName": "CSS VarGraph",
"description": "Interactive dependency graph for CSS custom properties",
"version": "0.1.0",
"publisher": "css-vargraph",
"repository": {
"type": "git",
"url": "https://github.com/Moa1er/CSSVarGraph.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Visualization", "Other"],
"activationEvents": [
"onCommand:cssVarGraph.showGraph"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "cssVarGraph.showGraph",
"title": "CSS VarGraph: Show Dependency Graph"
}
],
"configuration": {
"title": "CSS VarGraph",
"properties": {
"cssVarGraph.include": {
"type": "array",
"items": { "type": "string" },
"default": ["**/*.css", "**/*.scss", "**/*.less"],
"description": "Glob patterns for stylesheet files to include."
},
"cssVarGraph.exclude": {
"type": "array",
"items": { "type": "string" },
"default": ["**/node_modules/**", "**/.git/**"],
"description": "Glob patterns for files to exclude."
},
"cssVarGraph.maxFileSize": {
"type": "number",
"default": 50000,
"description": "Maximum file size in bytes to process."
},
"cssVarGraph.whatIfMode": {
"type": "string",
"enum": ["preview-only", "always-on"],
"default": "preview-only",
"description": "Mode for what-if value simulation."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.0.0",
"@types/vscode": "^1.85.0",
"mocha": "^11.0.0",
"typescript": "^5.7.0"
},
"dependencies": {
"d3": "^7.9.0",
"postcss": "^8.4.49"
}
}