-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "vscode-xicons-preview",
"displayName": "Xicons Preview",
"icon": "./images/logo.png",
"repository": {
"url": "https://github.com/undermoonn/vscode-xicons-preview"
},
"publisher": "undermoon",
"description": "Show xicons preview when import",
"version": "1.3.0",
"engines": {
"vscode": "^1.86.0"
},
"packageManager": "[email protected]",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "Xicons Preview",
"properties": {
"xicons-preview.xicons-cdn": {
"type": "string",
"default": "https://unpkg.com/@sicons"
},
"xicons-preview.xicons-version": {
"type": "string",
"default": "0.12.0"
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile"
},
"devDependencies": {
"@types/node": "20.11.17",
"@types/vscode": "^1.86.0",
"csstype": "^3.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"perfect-debounce": "^1.0.0",
"scule": "^1.0.0",
"svg64": "^2.0.0"
}
}