-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "vite-plugin-qiankun-x",
"version": "0.3.1",
"description": "A Vite plugin support qiankun app",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"examples:install": "yarn build && run-p install:*",
"examples:dev": "run-p dev:*",
"examples:build": "run-p build:*",
"examples:preview": "run-p preview:* dev:main",
"install:main": "cd example/main-app && yarn",
"install:vue": "cd example/sub-vite-vue && yarn",
"install:react": "cd example/sub-vite-react && yarn",
"dev:main": "cd example/main-app && yarn start",
"dev:vue": "cd example/sub-vite-vue && yarn dev",
"dev:react": "cd example/sub-vite-react && yarn dev",
"build:vue": "cd example/sub-vite-vue && yarn build",
"build:react": "cd example/sub-vite-react && yarn build",
"preview:vue": "cd example/sub-vite-vue && yarn preview",
"preview:react": "cd example/sub-vite-react && yarn preview",
"build": "rollup -c"
},
"author": "leon",
"license": "ISC",
"files": [
"dist",
"esm"
],
"keywords": [
"vite",
"qiankun",
"plugin"
],
"homepage": "https://github.com/missmess/vite-plugin-qiankun-x",
"repository": {
"type": "git",
"url": "git+https://github.com/missmess/vite-plugin-qiankun-x.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.21.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"vite": "^5.3.1"
},
"peerDependencies": {
"vite": "^4 || ^5"
}
}