-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 878 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
{
"name": "action-build-import-map-microfrontend-deps",
"version": "1.0.0",
"description": "Github action to build import-map-microfrontend-deps",
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "ncc build src/index.js --license LICENSE",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepublishOnly": "pnpm clean && pnpm build",
"prepare": "husky"
},
"keywords": [
"single-spa"
],
"author": "Joel Denning",
"license": "MIT",
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@single-spa/import-map-microfrontend-deps": "^1.1.0",
"@single-spa/import-map-microfrontend-utils": "^2.0.0"
}
}