-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.38 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
{
"name": "@codehz/ecs",
"version": "0.10.3",
"license": "MIT",
"module": "src/index.ts",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"perry": "./src/index.ts"
},
"./testing": {
"types": "./dist/testing.d.mts",
"import": "./dist/testing.mjs",
"perry": "./src/testing/index.ts"
}
},
"files": [
"dist",
"examples",
"src",
"skills",
"LICENSE",
"README.md",
"README.en.md"
],
"devDependencies": {
"@codehz/pipeline": "^0.4.3",
"@types/bun": "1.3.13",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"tsdown": "^0.22.0"
},
"repository": {
"url": "https://github.com/codehz/ecs"
},
"scripts": {
"test": "bun test",
"demo": "bun run examples/simple.ts",
"release": "bun run scripts/build.ts",
"prepare": "husky",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": [
"oxfmt",
"oxlint --fix"
],
"*.{json,md,yml,yaml}": [
"oxfmt"
]
},
"perry": {
"compilePackages": [
"@codehz/pipeline"
]
}
}