-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "neta_cli",
"version": "0.1.1",
"type": "module",
"description": "Next.js Exhaustive Testing Agent",
"main": "dist/index.js",
"bin": {
"neta": "./bin/neta"
},
"files": [
"dist",
"bin",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/cli.js",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"nextjs",
"testing",
"agent",
"automation"
],
"author": "Neel Ratan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neelra8n/neta.git"
},
"homepage": "https://github.com/neelra8n/neta#readme",
"bugs": {
"url": "https://github.com/neelra8n/neta/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^17.3.0",
"glob": "^10.3.10",
"inquirer": "^13.2.2",
"openai": "^4.28.0",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"vitest": "^1.3.1"
}
}