-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 986 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 986 Bytes
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
{
"name": "@suncoast/example-mfe",
"version": "0.1.0",
"private": true,
"description": "Example MFE package that follows the Suncoast module contract and builds to a single JS artifact.",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"clean:dev": "rm -rf dev-dist",
"typecheck": "tsc --noEmit",
"build:bundle": "node scripts/build.mjs",
"build:definition": "mkdir -p dist && cp module.definition.json dist/module.definition.json",
"build": "npm run clean && npm run typecheck && npm run build:bundle && npm run build:definition",
"dev": "npm run clean:dev && node scripts/dev.mjs",
"sync:directus": "node scripts/sync-directus-module.mjs",
"publish:registry": "node scripts/publish-registry.mjs",
"notify:catalog": "node scripts/notify-catalog-service.mjs"
},
"devDependencies": {
"dotenv": "^16.6.1",
"esbuild": "^0.25.9",
"graphql-ws": "^5.16.0",
"typescript": "^5.9.2"
}
}