-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 916 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 916 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
{
"name": "impeccable",
"version": "1.2.0",
"author": "Paul Bakaus",
"dependencies": {
"motion": "^12.23.26",
"playwright": "^1.57.0"
},
"description": "Cross-provider design skills and commands for LLM-powered development tools",
"keywords": [
"cursor",
"claude",
"gemini",
"codex",
"design",
"frontend",
"ux"
],
"license": "SEE LICENSE FILE",
"scripts": {
"build": "bun run scripts/build.js",
"clean": "rm -rf dist build",
"rebuild": "bun run clean && bun run build",
"dev": "bun run server/index.js",
"preview": "bun run build && wrangler pages dev",
"deploy": "bun run build && wrangler pages deploy build/",
"test": "bun test",
"screenshot": "bun run scripts/screenshot-antipatterns.js",
"og-image": "bun run scripts/generate-og-image.js"
},
"type": "module",
"devDependencies": {
"wrangler": "^4.71.0"
}
}