forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 951 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 951 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
{
"private": true,
"scripts": {
"validate": "tsc --noEmit --project tsconfig.json",
"check-missing": "ts-node meta/scripts/check-missing.ts",
"check-missing:help": "echo 'Usage: npm run check-missing \"<pattern>\" \"<property>\" [output-file]'",
"link-cardmarket": "ts-node meta/scripts/linkCardToCardmarket.ts",
"dex:audit": "bun scripts/pokedexIdFixer/audit-dex-ids.ts",
"dex:audit:report": "bun scripts/pokedexIdFixer/audit-dex-ids.ts --report",
"dex:fix:dry-run": "bun scripts/pokedexIdFixer/fix-dex-ids.ts --dry-run",
"dex:fix:apply": "bun scripts/pokedexIdFixer/fix-dex-ids.ts --apply",
"dex:lint": "bun scripts/pokedexIdFixer/lint-dex-ids.ts"
},
"devDependencies": {
"@dzeio/object-util": "^1.9.2",
"@dzeio/queue": "^1.2.1",
"@types/glob": "^9.0.0",
"@types/jscodeshift": "^17.3.0",
"@types/node": "^20.0.0",
"glob": "^10.0.0",
"jscodeshift": "^17.3.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}