-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "vite-plugin-dynamic-import-module",
"version": "0.2.1",
"description": "dynamic import module",
"license": "MIT",
"author": "DengQing <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Dunqing/vite-plugin-dynamic-import-module.git"
},
"keywords": [
"dynamic-import",
"vite",
"plugin",
"dynamic-import-module",
"dynamic-import-vars",
"rollup"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"play": "pnpm run --filter ./playground dev",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"homepage": "https://github.com/Dunqing/vite-plugin-dynamic-import-module#readme",
"bugs": {
"url": "https://github.com/Dunqing/vite-plugin-dynamic-import-module/issues"
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"fast-glob": "^3.2.11",
"magic-string": "^0.26.2",
"rollup": "^2.78.1",
"vite": "^3.0.9"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@antfu/eslint-config": "^0.25.2",
"@types/estree": "^1.0.0",
"@types/node": "^18.7.11",
"bumpp": "^8.2.1",
"eslint": "^8.22.0",
"estree-walker": "^3.0.1",
"pnpm": "^7.5.2",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.18.1"
}
}