-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "behavior3",
"version": "1.0.1",
"description": "Behavior Tree framework for TypeScript/JavaScript — simplifies game AI, skills, and buff logic.",
"author": "codetypess",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codetypess/behavior3-ts.git"
},
"bugs": {
"url": "https://github.com/codetypess/behavior3-ts/issues"
},
"homepage": "https://github.com/codetypess/behavior3-ts#readme",
"keywords": [
"behavior-tree",
"ai",
"game",
"typescript"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"start": "tsx test/main.ts",
"build": "rollup -c && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run check && npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.12.0",
"rollup": "^4.52.3",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}