-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"publisher": "simonhe",
"name": "vscode-uno-magic",
"displayName": "vscode-uno-magic",
"version": "0.0.16",
"packageManager": "pnpm@8.1.1",
"description": "vscode-uno-magic",
"author": "Simon He <https://github.com/Simon-He95>",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/vscode-uno-magic#readme",
"repository": {
"type": "git",
"url": "https://github.com/Simon-He95/vscode-uno-magic"
},
"bugs": {
"url": "https://github.com/Simon-He95/vscode-uno-magic/issues"
},
"sponsor": {
"url": "https://github.com/Simon-He95/sponsor"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.77.0"
},
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"dev": "pnpm build --watch",
"test": "vitest",
"build": "tsup src/index.ts --external vscode",
"pack": "vsce package --no-dependencies",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache --fix",
"publish": "vsce publish --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm run publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.3",
"@types/vscode": "^1.77.0",
"@unocss/autocomplete": "^0.53.3",
"@unocss/core": "^0.53.3",
"@unocss/preset-attributify": "^0.53.3",
"@unocss/preset-icons": "^0.53.3",
"@unocss/preset-uno": "^0.53.3",
"@unocss/preset-web-fonts": "^0.53.3",
"@unocss/preset-wind": "^0.53.3",
"@unocss/transformer-directives": "^0.53.3",
"@unocss/transformer-variant-group": "^0.53.3",
"@vscode-use/utils": "^0.0.26",
"bumpp": "^9.1.0",
"eslint": "^8.37.0",
"esno": "^0.16.3",
"find-up": "^6.3.0",
"pnpm": "^8.1.1",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3",
"vitest": "^0.29.8",
"vsce": "^2.15.0"
}
}