-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "sqlite-level",
"description": "sqlite backed abstract-level database for Node.js",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"level",
"leveldb",
"leveldown",
"levelup",
"memory",
"sqlite"
],
"bugs": {
"url": "https://github.com/tinacms/sqlite-level/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tinacms/sqlite-level.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"CHANGELOG.md",
"README.md",
"build"
],
"scripts": {
"watch": "tinacms-scripts watch",
"build": "tinacms-scripts build",
"dev": "tinacms-scripts dev",
"test": "jest --coverage",
"types": "tsc",
"docs": "npx typedoc",
"version": "pnpm exec changeset version"
},
"dependencies": {
"module-error": "^1.0.2",
"abstract-level": "^1.0.0",
"better-sqlite3": "^11.3.0"
},
"devDependencies": {
"@tinacms/scripts": "^1.2.1",
"@types/better-sqlite3": "^7.6.11",
"@types/jest": "^ 29.5.13",
"@changesets/cli": "2.27.8",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"peerDependencies": {
"sucrase": "^3.35.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "[email protected]"
}