generated from tjx666/unplugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.18 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "unplugin-detect-duplicated-deps",
"version": "2.0.0",
"description": "Detect duplicate packaged dependencies",
"keywords": [
"unplugin",
"rollup",
"vite",
"duplicated",
"repeat",
"dependencies"
],
"license": "MIT",
"homepage": "https://github.com/tjx666/unplugin-detect-duplicated-deps#readme",
"bugs": {
"url": "https://github.com/tjx666/unplugin-detect-duplicated-deps/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjx666/unplugin-detect-duplicated-deps.git"
},
"author": "YuTengjing <[email protected]>",
"maintainers": [
{
"name": "YuTengjing",
"email": "[email protected]"
},
{
"name": "Zhengz",
"email": "[email protected]"
}
],
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"import": "./dist/rollup.js"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"eslintConfig": {
"extends": "@yutengjing/eslint-config-typescript",
"ignorePatterns": [
"tests/fixtures"
]
},
"scripts": {
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json,.md",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --test-timeout=10000",
"release": "release && pnpm publish",
"prepublishOnly": "pnpm run build",
"docs:dev": "pnpm --filter docs exec vitepress dev .",
"docs:build": "pnpm --filter docs exec vitepress build .",
"docs:serve": "pnpm --filter docs exec vitepress serve ."
},
"dependencies": {
"@rollup/pluginutils": "^5.1.0",
"axios": "^1.6.8",
"cardinal": "^2.1.1",
"consola": "^3.2.3",
"picocolors": "^1.0.0",
"semver": "^7.6.0",
"unplugin": "^1.10.1",
"workspace-root": "^3.2.0"
},
"devDependencies": {
"@types/cardinal": "^2.1.1",
"@types/node": "^18.19.28",
"@types/semver": "^7.5.8",
"@yutengjing/eslint-config-typescript": "^0.7.0",
"@yutengjing/prettier-config": "^1.2.0",
"@yutengjing/release": "^0.2.0",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}