-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.57 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.57 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@spearwolf/shadow-objects-monorepo",
"description": "monorepo of shadow-objects :: the reactive entity-component framework",
"version": "0.0.0",
"author": "Wolfger Schramm <wolfger@spearwolf.de>",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=24.13.0",
"pnpm": ">=9.5.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:ci": "turbo run test --filter=!shadow-objects-e2e",
"lint": "biome check . --max-diagnostics 1000",
"lint:ci": "biome check . --reporter=summary",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rimraf dist node_modules/.cache .turbo",
"cbt": "pnpm clean && turbo run build test",
"ci": "turbo run build typecheck test --filter=!shadow-objects-e2e && pnpm lint:ci",
"dev": "turbo run dev --filter=@spearwolf/shae-offscreen-canvas",
"start": "pnpm dev",
"make:todo": "node scripts/makeTODO.mjs TODO.md",
"publishNpmPkg": "turbo run publishNpmPkg",
"update": "pnpm dlx npm-check --update"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@playwright/test": "catalog:",
"@types/node": "catalog:",
"@types/sinon": "catalog:",
"esbuild": "catalog:",
"happy-dom": "catalog:",
"jsdom": "catalog:",
"leasot": "catalog:",
"rimraf": "catalog:",
"sinon": "catalog:",
"tslib": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}