-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 849 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
{
"name": "kyseline",
"version": "0.2.3",
"description": "",
"main": "dist/index.js",
"bin": {
"kyseline": "./dist/index.js"
},
"scripts": {
"build-dev": "tsc && chmod +x ./dist/index.js && npm link",
"build": "tsc && chmod +x ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.1.0",
"pg": "^8.11.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"kysely": "^0.26.3"
},
"devDependencies": {
"@types/pg": "^8.10.9",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"vitest": "^0.34.6"
}
}