-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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.1.2"
},
"packageManager": "pnpm@9.1.2",
"scripts": {
"nx": "pnpm exec nx",
"rimraf": "pnpm exec rimraf",
"run-s": "pnpm exec run-s -s",
"build": "pnpm nx run-many -t build",
"test": "pnpm nx run-many -t test",
"test:ci": "pnpm nx run-many -t test --exclude=shadow-objects-e2e",
"lint": "pnpm nx run-many -t lint",
"test:affected": "pnpm nx affected -t test",
"clean": "pnpm nx run-many -t clean && pnpm rimraf dist",
"clear-cache": "pnpm nx reset && pnpm nx run-many -t clean && pnpm rimraf dist",
"update": "pnpm dlx npm-check --update",
"cbt": "pnpm run-s clean build test",
"start": "pnpm nx dev shae-offscreen-canvas",
"make:todo": "pnpm node scripts/makeTODO.mjs TODO.md",
"ci": "pnpm run-s build lint test:ci",
"publishNpmPkg": "pnpm nx run-many -t publishNpmPkg"
},
"devDependencies": {
"@nx/eslint-plugin": "^19.8.14",
"@nx/js": "^19.8.14",
"@nx/linter": "^19.8.4",
"@playwright/test": "^1.58.2",
"@rollup/plugin-node-resolve": "^15.3.1",
"@types/node": "^24.10.12",
"@types/react": "^18.3.28",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.27.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-require-extensions": "^0.1.3",
"happy-dom": "^14.12.3",
"leasot": "^14.4.0",
"lil-gui": "^0.21.0",
"npm-run-all": "^4.1.5",
"nx": "^19.8.14",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"react": "^18.3.1",
"rimraf": "^6.1.2",
"sinon": "^18.0.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}