-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.3 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@aige/core",
"version": "0.1.24",
"description": "AI Game Engine",
"homepage": "https://aige.games",
"license": "MIT",
"author": "Jay Mathis <[email protected]>",
"packageManager": "[email protected]",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/mathiscode/aige.git"
},
"bugs": {
"url": "https://github.com/mathiscode/aige/issues"
},
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"aige": "dist/cli.js"
},
"scripts": {
"build": "npm-run-all build:library build:docs",
"build:library": "tsc && shx cp package.json dist/pkg.json",
"build:docs": "typedoc",
"build:docs:watch": "typedoc --watch",
"test": "jest --verbose",
"test:watch": "jest --verbose --watchAll",
"test:coverage": "jest --verbose --coverage",
"dev:cli": "node --inspect -r ts-node/register src/cli.ts",
"prepublishOnly": "npm run build:library"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@types/supertest": "^2.0.12",
"@types/terminal-kit": "^2.5.6",
"@types/twuni__emojify": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.6.1",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.4",
"typescript": "^5.1.6"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@twuni/emojify": "^1.0.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"ink": "^4.4.1",
"openai": "^4.20.0",
"react": "^18.2.0"
},
"keywords": [
"aige",
"ai",
"game",
"engine",
"artificial intelligence",
"game engine",
"typescript",
"javascript",
"nodejs",
"node",
"js",
"ts",
"openai",
"gpt-api",
"openai-api",
"chatgpt",
"llm",
"machine learning",
"ml",
"gpt",
"gpt3",
"gpt4",
"gpt-3",
"gpt-4"
]
}