-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"type": "commonjs",
"name": "cognigy-hammer",
"description": "An extension development suite for CognigyAI.",
"version": "0.7.0",
"license": "MIT",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": {
"name": "tgbv",
"url": "https://github.com/tgbv"
},
"repository": {
"type": "git",
"url": "https://github.com/tgbv/cognigy-hammer.git"
},
"keywords": [
"cognigy",
"ai",
"extension",
"development-suite",
"cli"
],
"files": [
"build",
"templates",
"package-lock.json",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"create:scaffold": "npx ts-node ./src/commands/create:scaffold.ts",
"create:node": "npx ts-node ./src/commands/create:node.ts",
"create:connection": "npx ts-node ./src/commands/create:connection.ts",
"delete:node": "npx ts-node ./src/commands/delete:node.ts",
"cw": "npx ts-node ./src/commands/commanderWrapper",
"transpile": "npx jest --coverage --passWithNoTests ./src && npx tsc",
"local:build": "npm run transpile && npm pack && npm i --global cognigy-hammer-*"
},
"bin": {
"ch.create-scaffold": "./build/commands/create:scaffold.js",
"ch.create-project": "./build/commands/create:scaffold.js",
"ch.create-extension": "./build/commands/create:scaffold.js",
"ch.create-connection": "./build/commands/create:connection.js",
"ch.create-node": "./build/commands/create:node.js",
"ch.delete-node": "./build/commands/delete:node.js",
"cognigy-hammer": "./build/commands/commanderWrapper.js"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@types/prompts": "^2.4.5",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@cognigy/extension-tools": "^0.16.1",
"commander": "^12.1.0",
"detect-ts-node": "^1.0.5",
"handlebars": "^4.7.8",
"node-console-colors": "^1.1.5",
"prompts": "^2.4.2"
}
}