-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 883 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 883 Bytes
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
{
"name": "sqlite-helper",
"version": "0.1.0",
"description": "A tool to make interactions with sqlite databases easier",
"types": "./dist/typings/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prepare": "tsc",
"build:docs": "node ./docs/build.js"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"better-sqlite3": "^7.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/node": "^14.0.14",
"jsdoc-to-markdown": "^6.0.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PandaDriver156/sqlite-helper.git"
},
"bugs": {
"url": "https://github.com/PandaDriver156/sqliter-helper/issues"
},
"author": "PandaDriver (https://github.com/PandaDriver156)",
"homepage": "https://github.com/PandaDriver156/sqlite-helper",
"license": "MIT"
}