-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "neboa",
"type": "module",
"version": "0.6.1",
"description": "Type-safe NoSQL with Node & SQLite.",
"author": "Samuel Bazaga",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup-node --watch --onSuccess=\"node dist/index.js\"",
"build": "tsup-node",
"test": "vitest run",
"test:ui": "vitest watch --ui",
"test:coverage": "vitest run --coverage",
"release:test": "commit-and-tag-version",
"release:full": "npm run build && commit-and-tag-version && npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"bugs": {
"url": "https://github.com/aerotoad/neboa/issues"
},
"homepage": "https://github.com/aerotoad/neboa#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aerotoad/neboa.git"
},
"keywords": [
"sqlite",
"nosql",
"mongo",
"sqlite3",
"better-sqlite-3",
"db",
"database",
"storing",
"easy",
"simple",
"wrapper"
],
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/better-sqlite3": "^7.6.4",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"commit-and-tag-version": "^11.2.2",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vitepress": "^1.0.0-rc.4",
"vitest": "^0.33.0"
},
"dependencies": {
"better-sqlite3": "^8.5.0",
"bson-objectid": "^2.0.4",
"regex-parser": "^2.2.11"
}
}