-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.67 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.67 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
{
"name": "unplugin-starter",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@7.1.1",
"description": "Register global imports on demand for Vite and Webpack",
"license": "MIT",
"homepage": "https://github.com/antfu/unplugin-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/unplugin-starter.git"
},
"bugs": {
"url": "https://github.com/antfu/unplugin-starter/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"require": "./dist/nuxt.cjs",
"import": "./dist/nuxt.js"
},
"./rspack": {
"types": "./dist/rspack.d.ts",
"require": "./dist/rspack.cjs",
"import": "./dist/rspack.js"
},
"./types": {
"types": "./dist/types.d.ts",
"require": "./dist/types.cjs",
"import": "./dist/types.js"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "npm -C playground run dev",
"play-react": "npm -C example/react run dev",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"dependencies": {
"consola": "3.0.0-3",
"filesize": "^10.0.7",
"sharp": "^0.32.0",
"unplugin": "^1.3.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"bumpp": "^8.2.1",
"chalk": "^5.2.0",
"eslint": "^8.29.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"rollup": "^3.20.2",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vitest": "^0.25.8",
"webpack": "^5.77.0"
}
}