-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "@single-spa/import-map-microfrontend-deps",
"version": "1.1.0",
"description": "Simplified import map dependency management",
"type": "module",
"exports": {
".": {
"default": "./lib/import-map-microfrontend-deps.js",
"types": "./lib/import-map-microfrontend-deps.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test": "vitest",
"prepublishOnly": "pnpm clean && pnpm build",
"prepare": "husky"
},
"files": [
"lib"
],
"keywords": [
"single-spa"
],
"author": "Joel Denning",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"memfs": "^4.14.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"@jspm/generator": "^2.4.1",
"@single-spa/import-map-microfrontend-utils": "^2.0.0",
"@types/node": "^22.7.5"
},
"packageManager": "[email protected]"
}