-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.26 KB
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
{
"name": "typed-screeps-server",
"version": "0.0.3",
"description": "Typescript types for the Screeps private server",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"keywords": [
"Screeps",
"API",
"Typescript",
"Autocomplete"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"format": "prettier --write 'src/**/*.ts' README.md package.json tsconfig.json .prettierrc.yml",
"test": "npm run build && npm run lint",
"lint": "eslint -c eslint.config.mjs"
},
"author": "Etienne Samson <samson.etienne@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.11.1",
"@types/lodash": "^3.10.9",
"@types/node": "^10.17.60",
"@types/pixi.js": "^4.8.9",
"@types/q": "^1.5.8",
"@types/screeps": "^3.3.8",
"eslint": "^9.7.0",
"eslint-plugin-expect-type": "^0.4.0",
"husky": "^7.0.4",
"isolated-vm": "^6.0.2",
"lint-staged": "^12.3.8",
"prettier": "^3.8.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"lodash": "^3.10.1",
"q": "^1.5.1"
},
"peerDependencies": {
"@types/express": "*",
"@types/pixi.js": "*",
"@types/q": "*",
"@types/screeps": "*"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}