forked from unplugin/unplugin-auto-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.74 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
117
{
"name": "unplugin-auto-import",
"version": "0.6.9",
"description": "Register global imports on demand for Vite and Webpack",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"auto-import",
"transform"
],
"homepage": "https://github.com/antfu/unplugin-auto-import#readme",
"bugs": {
"url": "https://github.com/antfu/unplugin-auto-import/issues"
},
"license": "MIT",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/unplugin-auto-import.git"
},
"funding": "https://github.com/sponsors/antfu",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": "./*",
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./esbuild": {
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
}
},
"files": [
"dist",
"*.d.ts"
],
"sideEffects": false,
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"scripts": {
"build": "tsup src/*.ts --format cjs,esm --dts --splitting --clean && esno scripts/postbuild.ts",
"dev": "tsup src/*.ts --watch src",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"play": "npm -C playground run dev",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"peerDependencies": {
"@vueuse/core": "*"
},
"peerDependenciesMeta": {
"@vueuse/core": {
"optional": true
}
},
"dependencies": {
"@antfu/utils": "^0.5.0",
"@rollup/pluginutils": "^4.2.0",
"local-pkg": "^0.4.1",
"magic-string": "^0.26.1",
"resolve": "^1.22.0",
"unplugin": "^0.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.8",
"@antfu/ni": "^0.13.2",
"@types/node": "^17.0.21",
"@types/resolve": "^1.20.1",
"@vueuse/metadata": "^8.0.0",
"bumpp": "^7.1.1",
"eslint": "^8.10.0",
"esno": "^0.14.1",
"fast-glob": "^3.2.11",
"rollup": "^2.70.0",
"tsup": "^5.12.1",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vitest": "^0.6.0",
"webpack": "^5.70.0"
},
"engines": {
"node": ">=14"
}
}