-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 995 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@akgunberk/cbase",
"version": "1.1.5",
"description": "Bring codabasehq into your terminal",
"keywords": [
"cli",
"codebasehq"
],
"author": "Berk Akgun",
"license": "ISC",
"type": "commonjs",
"source": "src/cli.ts",
"main": "index.js",
"bin": {
"cbase": "index.js"
},
"files": [
"index.js",
"migration.sql"
],
"engines": {
"node": ">= 12"
},
"scripts": {
"type-check": "tsc --noEmit",
"watch": "parcel watch",
"build": "parcel build --no-source-maps",
"prepack": "npm run build"
},
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/node": "^17.0.9",
"@types/sqlite3": "^3.1.8",
"@types/xml2js": "^0.4.9",
"parcel": "latest",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"dotenv": "^14.2.0",
"inquirer": "^8.2.0",
"ora": "^5.1.0",
"sqlite3": "^5.0.2",
"xml-js": "^1.6.11"
}
}