-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.09 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
83
{
"name": "@byloth/micro-ecs",
"version": "1.0.35",
"description": "A simple & lightweight ECS (Entity Component System) library for JavaScript and TypeScript. 🕹",
"keywords": [
"ECS",
"Entity Component System",
"JavaScript",
"TypeScript",
"Library"
],
"homepage": "https://github.com/Byloth/micro-ecs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Byloth/micro-ecs.git"
},
"bugs": {
"url": "https://github.com/Byloth/micro-ecs/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "me@byloth.dev",
"url": "https://www.byloth.dev/"
},
"license": "Apache-2.0",
"type": "module",
"files": [
"index.js",
"index.mjs",
"dist",
"src"
],
"main": "index.js",
"module": "dist/micro-ecs.esm.bundler.js",
"types": "src/index.ts",
"unpkg": "dist/micro-ecs.global.prod.js",
"jsdelivr": "dist/micro-ecs.global.prod.js",
"exports": {
".": {
"import": {
"types": "./src/index.ts",
"node": "./index.mjs",
"default": "./dist/micro-ecs.esm.bundler.js"
},
"require": {
"types": "./src/index.ts",
"node": {
"production": "./dist/micro-ecs.prod.cjs",
"development": "./dist/micro-ecs.cjs",
"default": "./index.js"
},
"default": "./index.js"
}
}
},
"scripts": {
"dev": "vite",
"build": "vite build && vite build --mode bundler && vite build --mode development",
"preview": "vite preview",
"typecheck": "tsc",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench",
"prepare": "husky",
"ci": "pnpm install --frozen-lockfile"
},
"peerDependencies": {
"@byloth/core": "^2.2.6"
},
"devDependencies": {
"@byloth/eslint-config-typescript": "^4.0.1",
"@eslint/compat": "^2.1.0",
"@types/node": "^24.12.3",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vitest": "^4.1.5"
}
}