-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "@civ-clone/base-unit-action-goto",
"version": "0.1.2",
"main": "index.js",
"repository": "[email protected]:civ-clone/base-unit-action-goto.git",
"keywords": [
"typescript",
"civilization"
],
"author": "dom111 <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run ts:compile && npm run prettier:format",
"prettier:check": "prettier --config .prettierrc '**/*.ts'",
"prettier:format": "prettier --config .prettierrc '**/*.ts' --write",
"ts:compile": "tsc --build tsconfig.json"
},
"devDependencies": {
"@types/node": "^14.11.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@civ-clone/base-unit-action-move": "^0.1.1",
"@civ-clone/base-unit-action-no-orders": "^0.1.0",
"@civ-clone/core-player": "^0.1.0",
"@civ-clone/core-rule": "^0.1.2",
"@civ-clone/core-strategy": "^0.1.0",
"@civ-clone/core-unit": "^0.1.13",
"@civ-clone/core-world": "^0.1.9",
"@civ-clone/core-world-path": "^0.1.0"
}
}