forked from game-by-virtuals/game-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 874 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 874 Bytes
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
{
"name": "@virtuals-protocol/game-elfa-ai-plugin",
"version": "0.1.0",
"description": "Elfa AI Plugin for Virtuals GAME",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --out-dir dist",
"test": "jest --coverage"
},
"author": "",
"license": "MIT",
"devDependencies": {
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"dependencies": {
"tsup": "^8.3.5",
"axios": "^0.30.3",
"@virtuals-protocol/game": "^0.1.7"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/game-by-virtuals/game-node"
}
}