forked from n8n-incode/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 KB
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
{
"name": "@n8n-incode/cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && npm run copy-scaffold",
"dev": "tsc --watch",
"build-link": "tsc && npm run copy-scaffold && npm link",
"copy-scaffold": "node scripts/copy-scaffold.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test-env": "ts-node src/test-env.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n8n-incode/incode-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"incode": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/n8n-incode/incode-cli/issues"
},
"homepage": "https://github.com/n8n-incode/incode-cli#readme",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^11.0.0",
"dotenv": "^17.2.1",
"prompts": "^2.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/node": "^24.1.0",
"@types/prompts": "^2.4.9",
"eslint": "^9.32.0",
"prettier": "^3.6.2"
}
}