-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "typed-screeps",
"version": "3.4.0",
"description": "Strong TypeScript declarations for the game Screeps.",
"repository": "screepers/typed-screeps",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist/index.d.ts"
],
"scripts": {
"build": "node ./build/concat.js",
"format": "prettier --write 'src/**/*.ts' 'build/**/*.js'",
"test": "npm run build && npm run lint && npm run typecheck:dist",
"typecheck:dist": "tsc -p ./dist/tsconfig.json",
"lint": "eslint",
"pre-commit": "npm run build && git add dist/index.d.ts",
"prepare": "husky install"
},
"keywords": [
"Screeps",
"API",
"Typescript",
"Autocomplete"
],
"author": "Marko Sulamagi <marko.sulamagi@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^9.7.0",
"eslint-plugin-expect-type": "^0.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"typescript": "^5.5.0",
"typescript-eslint": "^7.16.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}