-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1000 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
{
"name": "@picahq/cli",
"version": "1.1.0",
"description": "Build and manage performant, high-converting native integrations with a few lines of code.",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"build-watch": "rimraf ./build && tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"pica": "build/index.js"
},
"author": "@picahq",
"license": "GPL-3.0",
"dependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"axios": "1.7.4",
"cli-table3": "^0.6.5",
"dotenv": "^16.4.5",
"express": "5.0.0",
"jest": "^29.7.0",
"picocolors": "^1.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"winston": "^3.17.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.10.6",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2"
}
}