-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.09 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
85
86
87
88
89
{
"name": "unplugin-unused",
"version": "0.4.1",
"packageManager": "pnpm@10.2.1",
"description": "Check unused dependencies.",
"type": "module",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-unused#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-unused/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-unused.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./rspack": "./dist/rspack.js",
"./rollup": "./dist/rollup.js",
"./rolldown": "./dist/rolldown.js",
"./esbuild": "./dist/esbuild.js",
"./api": "./dist/api.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"js-tokens": "^9.0.1",
"picocolors": "^1.1.1",
"pkg-types": "^1.3.1",
"unplugin": "^2.1.2",
"unplugin-utils": "^0.2.3"
},
"devDependencies": {
"@sxzz/eslint-config": "^5.0.1",
"@sxzz/prettier-config": "^2.1.2",
"@sxzz/test-utils": "^0.5.1",
"@types/node": "^22.13.1",
"bumpp": "^10.0.2",
"escape-string-regexp": "^5.0.0",
"eslint": "^9.20.0",
"prettier": "^3.5.0",
"tsdown": "^0.5.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}