-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 897 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
{
"name": "gh-aw-wizard",
"version": "1.0.0",
"private": true,
"description": "A wizard interface to create GitHub Agentic Workflows",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"predev": "node scripts/fetch-vendor-assets.mjs",
"prebuild": "node scripts/fetch-vendor-assets.mjs",
"build": "vite build",
"vendor": "node scripts/fetch-vendor-assets.mjs --force",
"preview": "vite preview",
"generate": "node src/js/cli.js",
"optimize": "node scripts/prompt-optimizer.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"vite": "^8.2.1",
"vitest": "^4.1.11"
}
}