-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "ai-workflow",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "AI Workflow - Pre-configured skill sets for AI coding assistants",
"repository": {
"type": "git",
"url": "https://github.com/nicepkg/ai-workflow.git"
},
"license": "MIT",
"scripts": {
"dev": "pnpm --filter ai-workflow-website dev",
"build": "pnpm --filter ai-workflow-website build",
"start": "pnpm --filter ai-workflow-website start",
"start:static": "pnpm --filter ai-workflow-website start:static",
"lint": "pnpm --filter ai-workflow-website lint",
"lint:fix": "pnpm --filter ai-workflow-website lint:fix",
"typecheck": "pnpm --filter ai-workflow-website typecheck",
"format": "pnpm --filter ai-workflow-website format:write",
"format:check": "pnpm --filter ai-workflow-website format:check",
"clean": "rm -rf node_modules website/node_modules website/.next",
"validate:skills": "python3 scripts/validate_sources.py",
"update:skills": "python3 scripts/update_skills.py --all-workflows"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"eslint": "^9.39.2"
}
}