-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.56 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-single-spa",
"version": "0.8.1",
"description": "Vite plugin to convert Vite-based projects to single-spa root or micro-frontend applications.",
"type": "module",
"main": "out/index.js",
"exports": {
".": {
"types": "./out/vite-plugin-single-spa.d.ts",
"import": "./out/index.js"
},
"./ex": {
"types": "./out/ex/index.d.ts",
"import": "./out/ex/index.js"
}
},
"types": "out/vite-plugin-single-spa.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/WJSoftware/vite-plugin-single-spa.git"
},
"keywords": [
"vite",
"vite-plugin",
"single-spa",
"mife",
"mfe",
"micro-frontend",
"root-config"
],
"author": {
"email": "webJose@gmail.com",
"name": "José Pablo Ramírez Vargas"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/WJSoftware/vite-plugin-single-spa/issues"
},
"homepage": "https://github.com/WJSoftware/vite-plugin-single-spa#readme",
"peerDependencies": {
"vite": "^5.0.0 || ^v6.0.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"publint": "^0.2.12",
"single-spa": "^6.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"test": "ts-mocha -n loader=ts-node/esm -p ./tsconfig.json ./tests/**/*.test.ts",
"build": "powershell ./build-npm.ps1 && publint"
},
"files": [
"./out/**/*.js",
"./out/**/*.d.ts"
]
}