-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wima",
"version": "0.3.0",
"description": "An ECS driven modular game engine.",
"homepage": "https://wimaengine.org",
"bugs": {
"url": "https://github.com/wimaengine/wima/issues"
},
"type": "module",
"license": "SEE LICENSE in LICENSE.txt",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.module.js",
"require": "./dist/index.umd.js"
}
},
"author": "Wima engine contributors",
"repository": {
"type": "git",
"url": "https://github.com/wimaengine/wima.git"
},
"packageManager": "npm@11.12.1",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vite --config .config/vite.config.js",
"dev": "vite --config .config/vite.config.js",
"eslint": "eslint --config .config/eslint.config.js --ignore-pattern '**/*.test.js'",
"typedoc": "typedoc -options .config/typedoc.json --tsconfig .config/tsc.lint.json",
"types:root": "tsc -p .config/tsc.type.json",
"build:root": "vite build --config .config/vite.config.js",
"build:docs": "npm run typedoc",
"types": "turbo run types //#types:root",
"test": "turbo run test",
"build": "turbo run build && turbo run //#build:root //#build:docs",
"lint": "npm run lint:src && npm run lint:examples",
"version": "changeset version",
"check:release-version": "node scripts/check-release-version.js",
"release": "npm run build && changeset publish",
"build:lib": "npm run types && turbo run //#build:root",
"lint:dry": "npm run lint:src-dry && npm run lint:examples-dry",
"lint:src-dry": "npm run eslint -- src packages",
"lint:examples-dry": "npm run eslint -- examples",
"lint:src": "npm run lint:src-dry -- --fix",
"lint:examples": "npm run lint:examples-dry -- --fix",
"tsc:lint": "tsc -p .config/tsc.lint.json",
"watch:src": "vite build --watch --config .config/vite.config.js",
"watch:docs": "npm run typedoc -- --watch",
"clean:build": "rm -rf dist types packages/*/types packages/*/dist"
},
"keywords": [
"game",
"engine",
"game engine",
"2D",
"3D"
],
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/node": "^24.0.12",
"eslint": "^9.30.1",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-jsdoc": "^51.3.3",
"rollup-plugin-dts": "^6.2.1",
"turbo": "^2.10.4",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vitest": "^4.1.10"
},
"files": [
"dist/**/*"
],
"dependencies": {
"vifaa": "^0.4.0"
}
}