-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cdb-converter",
"version": "0.4.0",
"description": "Convert Pro Cycling Manager CDB files to/from SQLite and other formats. TypeScript library with zero configuration.",
"license": "MIT",
"author": "PCMStack",
"repository": {
"type": "git",
"url": "https://github.com/PCMStack/converter"
},
"bugs": {
"url": "https://github.com/PCMStack/converter/issues"
},
"homepage": "https://github.com/PCMStack/converter#readme",
"keywords": [
"cdb",
"database",
"converter",
"sqlite",
"binary",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"cdb-converter": "dist/cli.mjs"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"format": "biome format --write .",
"lint": "biome lint --write .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"bench": "vitest bench --run",
"prepare": "husky"
},
"dependencies": {
"@types/sql.js": "^1.4.11",
"pako": "^3.0.1",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@types/node": "^22.20.0",
"@types/pako": "^3.0.0",
"@types/sql.js": "^1.4.11",
"@vitest/coverage-v8": "^4.1.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22.0.0"
}
}