-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 988 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 988 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
{
"author": "Scott Bedard",
"bugs": {
"url": "https://github.com/scottbedard/chess-types/issues"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/node": "^22.13.11",
"eslint": "^9.23.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0",
"vitest": "^3.0.9"
},
"files": [
"/dist",
"/tsconfig.json"
],
"homepage": "https://github.com/scottbedard/chess-types#readme",
"keywords": [],
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"name": "@bedard/chess-types",
"repository": {
"type": "git",
"url": "git+https://github.com/scottbedard/chess-types.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.json --emitDeclarationOnly && node ./scripts/build.mjs",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"test": "vitest --typecheck"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.0.22"
}