-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.25 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
{
"name": "project-tak-tourney-adhoc",
"version": "1.0.0",
"description": "This is a standalone TypeScript library for taking playtak.com API inputs and outputting tournament information.",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "node --experimental-strip-types --test",
"test:watch": "node --experimental-strip-types --test --watch",
"start": "node --experimental-strip-types src/cli-driver.ts",
"lint": "eslint src --cache",
"lint:fix": "eslint src --cache --fix",
"format": "prettier --cache --write \"src/**/*.ts\"",
"ts:check": "tsc --noEmit",
"dev:all_checks": "npm run ts:check && npm run lint:fix && npm run format",
"dev:recreate_auto_guard": "npx ts-auto-guard --project ./misc/ts-auto-guard.tsconfig.json --paths ./src/playtak-api/types.ts --paths ./src/types.ts --export-all"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"ts-auto-guard": "^5.0.1",
"typescript-eslint": "^8.19.1"
}
}