-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1023 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1023 Bytes
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
{
"name": "@10xdevspl/test-planner",
"version": "0.1.4",
"main": "index.ts",
"type": "module",
"bin": {
"test-planner": "./dist/index.js"
},
"files": [
"dist",
"src/**/*.md"
],
"scripts": {
"start": "tsx index.ts",
"test": "tsx index.ts --video=data/10xcms.mp4 --outDir=./data",
"copy-md": "cp -R src/prompts dist/src",
"build": "tsc && npm run copy-md",
"prepublishOnly": "npm run build",
"publish:patch": "npm version patch && npm publish"
},
"author": "10xDevs | Przeprogramowani.pl",
"license": "ISC",
"description": "CLI tool to generate test plans from video recordings using Google's Gemini models",
"repository": {
"type": "git",
"url": "https://github.com/przeprogramowani/10x-test-planner"
},
"dependencies": {
"@google/genai": "0.8.0",
"commander": "12.0.0",
"dotenv": "16.5.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "22.14.0",
"tsx": "4.19.3",
"typescript": "5.8.3"
}
}