-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "typed-screeps",
"version": "3.3.3",
"description": "Strong TypeScript declarations for the game Screeps.",
"repository": "screepers/typed-screeps",
"types": "./dist/index.d.ts",
"files": [
"dist/index.d.ts"
],
"scripts": {
"compile": "node ./build/concat.js",
"format": "npm run format:build && npm run format:src",
"format:build": "prettier --write 'build/**/*.js'",
"format:src": "prettier --write 'src/**/*.ts'",
"test": "npm run compile && npm run lint:test",
"lint": "eslint -c eslint.config.mjs",
"lint:test": "eslint -c eslint.config.test.mjs dist/screeps-tests.ts",
"pre-commit": "npm run compile && git add dist/index.d.ts",
"prepare": "husky install && npm test"
},
"keywords": [
"Screeps",
"API",
"Typescript",
"Autocomplete"
],
"author": "Marko Sulamagi <[email protected]>",
"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"
]
}
}