-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.59 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.59 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
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
{
"name": "@tst-studio/tst",
"version": "0.2.0",
"description": "LLM-powered unit test generator CLI by TST-Studio",
"type": "module",
"author": "TST-Studio",
"repository": {
"type": "git",
"url": "git+https://github.com/TST-Studio/tst-cli.git"
},
"bugs": {
"url": "https://github.com/TST-Studio/tst-cli/issues"
},
"homepage": "https://github.com/TST-Studio/tst-cli#readme",
"license": "MIT",
"bin": {
"tst": "bin/run.js"
},
"keywords": [
"unit",
"test",
"ai"
],
"files": [
"bin/",
"dist/",
"oclif.manifest.json",
"README.md",
"LICENSE*"
],
"publishConfig": {
"access": "public"
},
"oclif": {
"commands": "./dist/commands",
"bin": "tst",
"tsconfig": "./tsconfig.json"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm oclif.manifest.json; rm -Rf dist/",
"test": "vitest run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"start": "node ./bin/dev",
"prepack": "npm run build && oclif manifest",
"postpack": "true"
},
"dependencies": {
"@oclif/core": "^4.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"openai": "^5.16.0",
"ts-morph": "^21.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@oclif/plugin-legacy": "^2.0.24",
"@types/node": "^20.14.9",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"oclif": "^4.6.3",
"prettier": "^3.6.2",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
}
}