-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 740 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 740 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
34
{
"name": "openvolt-worksample",
"version": "0.0.1",
"description": "Technical test for openVolt",
"type": "module",
"main": "src/cli.ts",
"bin": {
"openvolt": "./src/cli.ts"
},
"scripts": {
"start": "tsx src/cli.ts"
},
"engines": {
"node": ">=20.6.0"
},
"keywords": [],
"author": "Lucas Santos <hello@lsantos.dev> (https://lsantos.dev/)",
"license": "GPL-3.0",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^20.9.0",
"tsx": "^4.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"bson-objectid": "^2.0.4",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"ervy": "^1.0.7",
"ora": "^7.0.1",
"zod": "^3.22.4"
}
}