This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"name": "vite-plugin-demand-import",
"version": "1.1.1",
"description": "Demand import for the library that has side effects",
"keywords": [
"vite-plugin",
"vite-plugin-demand-import",
"vite plugin demand import"
],
"author": "liuweigl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liuweiGL/vite-plugin-demand-import"
},
"packageManager": "[email protected]+",
"types": "./dist/plugin/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"files": [
"plugin",
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/plugin/index.d.ts"
}
},
"scripts": {
"test": "pnpm build && vite",
"build": "tsx script/build.mts",
"lint": "tsc -p tsconfig.build.json && eslint \"plugin/**/*.ts\" --color --quiet",
"release": "semantic-release"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"astring": "^1.8.6",
"lodash": "^4.17.21",
"source-map": "^0.7.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/estree": "^1.0.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"antd-mobile": "^5.32.0",
"esbuild": "^0.18.12",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^21.0.7",
"tsx": "^3.12.7",
"typescript": "latest",
"vite": "latest"
},
"peerDependencies": {
"vite": ">=3"
}
}