-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.16 KB
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
{
"name": "webcodecs-census-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @motionvector/webcodecs-census && npm run build -w @motionvector/webcodecs-census-cdp && npm run build -w @motionvector/webcodecs-census-mcp",
"test": "node --test --test-timeout=240000 test/*.test.mjs",
"pretypecheck": "npm run build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"release": "npm run preflight && npm run build && npm test && npm publish -w @motionvector/webcodecs-census && npm publish -w @motionvector/webcodecs-census-cdp && npm publish -w @motionvector/webcodecs-census-mcp",
"preflight": "node scripts/preflight.mjs",
"build:extension": "cd extension && node make-icons.mjs && node build.mjs",
"build:all": "npm run build && npm run build:extension && npm run build:fixtures",
"build:fixtures": "node test/build-fixtures.mjs",
"build:diagram": "node scripts/make-diagram.mjs"
},
"devDependencies": {
"@types/node": "^22.20.1",
"esbuild": "^0.25.0",
"mediabunny": "^1.53.1",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}