-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 783 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
{
"name": "openwa-plugins",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Official & community plugins for OpenWA.",
"license": "MIT",
"engines": { "node": ">=22" },
"scripts": {
"build": "set -e; for d in */; do if [ -f \"${d}manifest.json\" ]; then node package.mjs \"${d%/}\"; fi; done",
"catalog": "node scripts/catalog.mjs",
"catalog:check": "node scripts/catalog.mjs --check",
"loader:check": "node scripts/loader-check.mjs",
"test": "node scripts/run-tests.mjs",
"test:coverage": "node scripts/run-tests.mjs --experimental-test-coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.20.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}