-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.08 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
{
"name": "@civ-clone/library-strategy",
"version": "0.1.0",
"repository": "[email protected]:civ-clone/library-strategy.git",
"keywords": [
"typescript",
"civilization"
],
"author": "dom111 <[email protected]>",
"license": "MIT",
"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.0.0",
"prettier": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@civ-clone/base-strategy-build-city": "^0.1.0",
"@civ-clone/base-strategy-move-to-target": "^0.1.0",
"@civ-clone/core-city": "^0.1.10",
"@civ-clone/core-city-build": "^0.1.0",
"@civ-clone/core-city-improvement": "^0.1.4",
"@civ-clone/core-civilization": "^0.1.3",
"@civ-clone/core-client": "^0.1.0",
"@civ-clone/core-diplomacy": "^0.1.0",
"@civ-clone/core-goody-hut": "^0.1.0",
"@civ-clone/core-government": "^0.1.4",
"@civ-clone/core-player": "^0.1.7",
"@civ-clone/core-player-world": "^0.1.0",
"@civ-clone/core-rule": "^0.1.3",
"@civ-clone/core-science": "^0.1.4",
"@civ-clone/core-strategy": "^0.1.0",
"@civ-clone/core-strategy-ai-client": "^0.1.0",
"@civ-clone/core-terrain": "^0.1.2",
"@civ-clone/core-tile-improvement": "^0.1.2",
"@civ-clone/core-treasury": "^0.1.4",
"@civ-clone/core-unit": "^0.1.16",
"@civ-clone/core-unit-improvement": "^0.1.0",
"@civ-clone/core-unit-transport": "^0.1.0",
"@civ-clone/core-wonder": "^0.1.5",
"@civ-clone/core-world": "^0.1.10",
"@civ-clone/core-world-path": "^0.1.0",
"@civ-clone/core-yield": "^0.1.0",
"@civ-clone/library-city": "^0.1.1",
"@civ-clone/library-civilization": "^0.1.0",
"@civ-clone/library-government": "^0.1.0",
"@civ-clone/library-science": "^0.1.0",
"@civ-clone/library-unit": "^0.1.1",
"@civ-clone/library-wonder": "^0.1.0",
"@civ-clone/library-world": "^0.1.0"
}
}