-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.57 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.57 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
{
"name": "@codehz/ecs",
"version": "0.7.5",
"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",
"LICENSE",
"README.md",
"README.en.md"
],
"devDependencies": {
"@codehz/pipeline": "^0.4.3",
"@types/bun": "1.3.13",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.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": "eslint --ext .ts,.tsx,.js --quiet",
"lint:fix": "eslint --ext .ts,.tsx,.js --fix",
"format": "prettier --write ."
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"perry": {
"compilePackages": [
"@codehz/pipeline"
]
}
}