-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.06 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "cachified-adapter-sqlite",
"version": "1.1.0",
"description": "SQLite adapter for @epic-web/cachified. Compatible with better-sqlite3, sqlite, sqlite3, node:sqlite, and bun:sqlite.",
"sideEffects": false,
"type": "module",
"packageManager": "[email protected]",
"keywords": [
"cache",
"@epic-web/cachified",
"cachified",
"sqlite",
"bun-sqlite",
"better-sqlite3",
"sqlite3",
"node-sqlite"
],
"homepage": "https://github.com/MonsterDeveloper/cachified-adapter-sqlite",
"repository": {
"type": "git",
"url": "git+https://github.com/MonsterDeveloper/cachified-adapter-sqlite"
},
"bugs": {
"url": "https://github.com/MonsterDeveloper/cachified-adapter-sqlite/issues"
},
"license": "GPL-3.0-only",
"author": "Andrei Bobkov <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./sqlite": {
"import": "./dist/sqlite.js",
"types": "./dist/sqlite.d.ts"
},
"./sqlite3": {
"import": "./dist/sqlite3.js",
"types": "./dist/sqlite3.d.ts"
},
"./better-sqlite3": {
"import": "./dist/better-sqlite3.js",
"types": "./dist/better-sqlite3.d.ts"
},
"./bun": {
"import": "./dist/bun.js",
"types": "./dist/bun.d.ts"
},
"./node-sqlite": {
"import": "./dist/node-sqlite.js",
"types": "./dist/node-sqlite.d.ts"
}
},
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cto_of_everything/biome-config": "^1.0.0",
"@epic-web/cachified": "^5.2.0",
"@types/better-sqlite3": "^7.6.12",
"@types/bun": "latest",
"@types/node": "^22.10.2",
"better-sqlite3": "^11.7.0",
"husky": "^9.1.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-plugin-dts": "^4.4.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@epic-web/cachified": "^5.2.0",
"better-sqlite3": "^11.7.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"sqlite": {
"optional": true
},
"sqlite3": {
"optional": true
}
},
"scripts": {
"prepare": "husky",
"build": "vite build",
"test:vitest": "vitest run",
"test:bun": "bun test bun.test.ts",
"test:node": "node --import tsx --test --experimental-sqlite src/__tests__/node-sqlite.test.ts",
"test": "bun test:vitest && bun test:bun && bun test:node",
"check": "biome check",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm --profile node16",
"typecheck": "tsc",
"knip": "knip",
"update": "bunx npm-check-updates -ui --reject bun"
}
}