-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "ui-development-power",
"version": "0.1.0",
"description": "Kiro Power for building accessible, modern, and design-system-compliant user interfaces",
"type": "module",
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"test:ui": "vitest --ui",
"test:property": "vitest --run tests/property",
"validate:structure": "node tests/validation-report.js",
"validate:frontmatter": "node -e \"const fs=require('fs');const c=fs.readFileSync('power/POWER.md','utf-8');if(!c.match(/^---[\\r\\n][\\s\\S]+?[\\r\\n]---/)){process.exit(1)}\"",
"validate:mcp": "node -e \"JSON.parse(require('fs').readFileSync('power/mcp.json','utf-8'))\"",
"validate:links": "echo 'Link validation not implemented yet'",
"format:check": "echo 'Format check not implemented yet'",
"lint": "echo 'Lint not implemented yet'",
"build": "echo 'No build step required'"
},
"keywords": [
"kiro",
"power",
"ui",
"ux",
"design",
"accessibility",
"figma",
"react",
"component-library",
"design-system"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@vitest/ui": "^1.0.0",
"fast-check": "^3.15.0",
"vitest": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0"
}
}