-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 KB
/
package.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fibbojs",
"type": "module",
"version": "0.0.1",
"description": "A web game engine written in TypeScript",
"author": "Augustin Mercier 'Gugustinette' <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"homepage": "https://fibbo.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/fibbojs/fibbo.git"
},
"bugs": "https://github.com/fibbojs/fibbo/issues",
"keywords": [],
"scripts": {
"dev:3d": "nx dev:watch @fibbojs/playground-3d",
"dev:3d:windows": "nx dev:watch:windows @fibbojs/playground-3d",
"dev:2d": "nx dev:watch @fibbojs/playground-2d",
"dev:2d:windows": "nx dev:watch:windows @fibbojs/playground-2d",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix .",
"lint:docs": "./node_modules/.bin/eslint --fix ./docs",
"test": "vitest --config ./vitest.config.global.ts --workspace ./vitest.workspace.ts",
"test:ui": "vitest --ui --config ./vitest.config.global.ts --workspace ./vitest.workspace.ts",
"test:report": "vitest run --config ./docs/vitest.config.ts --workspace ./vitest.workspace.ts",
"docs:dev": "vitepress dev docs",
"docs:dev:host": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:generate": "./scripts/docs:generate.sh"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@dimforge/rapier2d": "^0.14.0",
"@dimforge/rapier3d": "^0.14.0",
"pixi-viewport": "^5.0.3",
"pixi.js": "^8.3.4",
"three": "^0.168.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.14.0",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@nx/eslint": "19.6.1",
"@nx/js": "19.6.1",
"@nx/vite": "^20.0.0",
"@nx/web": "19.6.1",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.12",
"@types/node": "^20.12.7",
"@types/three": "^0.166.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/browser": "^2.1.2",
"@vitest/coverage-istanbul": "^2.1.2",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"eslint": "^9.7.0",
"nx": "19.6.1",
"playwright": "^1.47.2",
"rimraf": "^5.0.5",
"sass": "^1.77.8",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.2",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.2.9",
"vitepress": "^1.5.0",
"vitest": "^2.1.2",
"vue": "^3.5.13",
"vue-tsc": "^2.0.29"
},
"nx": {}
}