-
-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.8 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.8 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
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
116
{
"name": "unplugin-auto-import",
"type": "module",
"version": "21.0.0",
"packageManager": "[email protected]",
"description": "Register global imports on demand for Vite and Webpack",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/unplugin/unplugin-auto-import#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-auto-import.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-auto-import/issues"
},
"keywords": [
"unplugin",
"vite",
"astro",
"webpack",
"rolldown",
"rollup",
"rspack",
"auto-import",
"transform"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./astro": "./dist/astro.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./nuxt": "./dist/nuxt.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./types": "./dist/types.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*.d.mts",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown -w",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"typecheck": "tsgo",
"play": "pnpm -C playground run dev",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"test:run": "vitest run"
},
"peerDependencies": {
"@nuxt/kit": "^4.0.0",
"@vueuse/core": "*"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
},
"@vueuse/core": {
"optional": true
}
},
"dependencies": {
"local-pkg": "^1.1.2",
"magic-string": "^0.30.21",
"picomatch": "^4.0.3",
"unimport": "^5.6.0",
"unplugin": "^2.3.11",
"unplugin-utils": "^0.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.0.0",
"@antfu/ni": "^28.2.0",
"@antfu/utils": "^9.3.0",
"@nuxt/kit": "^4.2.2",
"@nuxt/schema": "^4.2.2",
"@svgr/plugin-jsx": "^8.1.0",
"@types/node": "^25.0.8",
"@types/picomatch": "^4.0.2",
"@typescript/native-preview": "7.0.0-dev.20260114.1",
"@vueuse/metadata": "^14.1.0",
"bumpp": "^10.4.0",
"eslint": "^9.39.2",
"publint": "^0.3.16",
"rolldown": "^1.0.0-beta.60",
"rollup": "^4.55.1",
"tinyglobby": "^0.2.15",
"tsdown": "^0.20.0-beta.3",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"unplugin-vue-components": "^31.0.0",
"vite": "^7.3.1",
"vitest": "^4.0.17",
"webpack": "^5.104.1"
}
}