-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 830 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 830 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
34
35
36
37
38
39
{
"name": "@dchighs/dc-core",
"version": "0.4.2",
"description": "A library focused on simulating some of the logic of the game Dragon City.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc"
},
"keywords": [
"dragon city",
"dc",
"core",
"dc highs"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/dc-highs/dc-core.git"
}
}