-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 KB
/
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
49
{
"name": "install-odoo",
"version": "1.0.5",
"keywords": [
"odoo",
"install-odoo",
"CLI"
],
"repository": "github:HeliconiaIO/install-odoo",
"homepage": "https://github.com/HeliconiaIO/install-odoo#readme",
"author": "Heliconia Team <[email protected]>",
"license": "MIT",
"description": "A node cli to install odoo",
"main": "dist/index.js",
"bin": {
"install-odoo": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format cjs --dts --minify terser",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.7.4",
"@types/pg": "^8.11.10",
"@types/prompts": "2.4.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"node-fetch": "^3.3.2",
"ora": "^8.1.0",
"pg": "^8.13.0",
"picocolors": "^1.1.0",
"prompts": "^2.4.2",
"simple-git": "^3.27.0",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"terser": "^5.36.0"
},
"engines": {
"node": ">=18.18.0"
}
}