-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "moedict-process",
"version": "2.0.0",
"description": "教育部重編國語辭典資料處理 (Bun/TypeScript port)",
"type": "module",
"scripts": {
"build": "tsc -b --noEmit",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"parse": "bun run src/bin/parse.ts",
"to-sqlite": "bun run src/bin/to-sqlite.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"stryker": "stryker run"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/typescript-checker": "^8.7.1",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@types/better-sqlite3": "^7.6.12",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"engines": {
"bun": ">=1.3.0"
}
}