-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 859 Bytes
/
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
{
"name": "quickstartdb",
"version": "1.0.3",
"description": "Database for quickly putting together projects",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevReaper0/quickstartdb.git"
},
"keywords": [
"database"
],
"author": "DevReaper0",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevReaper0/quickstartdb/issues"
},
"homepage": "https://github.com/DevReaper0/quickstartdb#readme",
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"tsup": "^8.0.1"
},
"optionalDependencies": {
"express": "^4.18.2"
}
}