-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "@spearwolf/twopoint5d",
"description": "a library to create 2.5d realtime graphics and pixelart with three.js",
"version": "0.0.0",
"author": "Wolfger Schramm <wolfger@spearwolf.de>",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=22.13",
"pnpm": ">=10.22.0"
},
"packageManager": "pnpm@10.27.0",
"scripts": {
"build": "pnpm nx run-many -t build",
"build:twopoint5d": "NX_TUI=false pnpm nx run-many -t build --projects=tag:twopoint5d",
"test": "pnpm nx run-many -t test",
"test:ci": "NX_TUI=false pnpm nx run-many -t test --projects=tag:ci",
"test:twopoint5d": "NX_TUI=false pnpm nx run-many -t test --projects=tag:twopoint5d",
"lint": "eslint .",
"test:affected": "pnpm nx affected -t test",
"clean": "NX_TUI=false pnpm nx run-many -t clean && rimraf dist",
"checkPkgTypes": "pnpm nx run-many -t checkPkgTypes",
"publishNpmPkg": "pnpm nx run-many -t publishNpmPkg",
"update": "pnpm dlx npm-check --update",
"cbt": "NX_TUI=false pnpm run-s -sn clean lint build checkPkgTypes test:ci",
"rebuild:twopoint5d": "NX_TUI=false pnpm run-s -sn build:twopoint5d test:twopoint5d",
"test:all": "NX_TUI=false pnpm run-s -sn clean lint build checkPkgTypes test:ci",
"lookbook": "NX_TUI=false pnpm nx dev lookbook",
"handbook": "NX_TUI=false pnpm nx dev handbook",
"ci": "NX_TUI=false pnpm run-s -sn clean lint build checkPkgTypes test:ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.39.2",
"@types/node": "^22.19.1",
"@types/react": "^19.2.14",
"@types/sinon": "^21.0.0",
"@types/three": "catalog:",
"@vitejs/plugin-react": "^5.1.4",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"happy-dom": "^20.7.0",
"npm-run-all": "^4.1.5",
"nx": "22.5.3",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "^6.1.3",
"sinon": "^21.0.1",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"use-asset": "^1.0.4",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
}
}