-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.05 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
70
71
72
73
74
75
76
{
"name": "@keybittech/wizapp",
"version": "0.2.0-beta.2",
"description": "The Wizard's Apprentice",
"keywords": [
"automated",
"ai",
"api",
"assistant",
"typescript",
"development",
"editing",
"projects"
],
"homepage": "https://github.com/keybittech/wizapp",
"license": "MIT",
"author": "Joe McCormick",
"type": "module",
"bin": {
"wizapp": "./dist/server/cli.cjs"
},
"exports": {
"./dist/lib": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js",
"require": "./dist/lib/index.cjs"
},
"./dist/server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node node_modules/tsup/dist/cli-default.js --config tsup.config.ts && tsc -p tsconfig.json",
"oldbuild": "node node_modules/tsup/dist/cli-default.js --treeshake --format esm,cjs src/index.ts src/cli.ts && tsc -p tsconfig.json",
"wizapp": "ts-node ./src/cli.ts",
"test": "jest",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"update-version": "npm version --no-git-tag-version $new_version && git add package.json && git commit -m \"Update to version $new_version\"",
"publish-package": "npm publish --access public",
"update-and-publish": "npm run update-version && npm run publish-package"
},
"dependencies": {
"fast-glob": "^3.2.12",
"openai": "3.2.1",
"simple-git": "3.17.0",
"ts-morph": "18.0.0",
"yargs": "17.7.1"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.16.3",
"@types/yargs": "17.0.24",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"ts-loader": "9.0.0",
"tsup": "^6.7.0",
"typescript": "4.9.5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keybittech/wizapp.git"
},
"bugs": {
"url": "https://github.com/keybittech/wizapp/issues"
}
}