-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 965 Bytes
/
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
{
"name": "vite-plugin-micro",
"version": "0.1.2",
"description": "The implementation of a micro-frontend based on ESM.",
"keywords": [
"vite",
"micro",
"importmaps"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/yzydeveloper/vite-plugin-micro.git"
},
"author": "yzydeveloper",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup",
"dev": "tsup --watch",
"release": "bumpp && npm publish"
},
"bugs": {
"url": "https://github.com/yzydeveloper/vite-plugin-micro/issues"
},
"homepage": "https://github.com/yzydeveloper/vite-plugin-micro",
"devDependencies": {
"@types/node": "^18.15.0",
"@yzydeveloper/eslint-config": "^0.1.5",
"bumpp": "^9.1.0",
"picocolors": "^1.0.0",
"tsup": "^6.6.0",
"typescript": "^4.9.5",
"vite": "^4.5.0"
}
}