-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.17 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.17 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "coderio",
"version": "1.0.3",
"description": "A modern CLI development tool built with TypeScript",
"type": "module",
"bin": {
"coderio": "./dist/cli.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"build": "pnpm run check && tsup",
"build:report": "cd src/tools/report-tool/template && pnpm install && pnpm build",
"check": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "vitest --ui --coverage",
"prepare": "husky"
},
"keywords": [
"figma",
"design-to-code",
"figma-to-react",
"ai-code-generation",
"visual-validation",
"react",
"typescript",
"tailwindcss",
"multi-agent",
"design-automation",
"frontend-tools",
"ui-restoration",
"design-ops",
"code-generation",
"ai-tool",
"vite",
"cli"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@langchain/core": "^1.1.17",
"@langchain/langgraph": "^1.1.2",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.0",
"@langchain/openai": "^1.2.3",
"@types/pixelmatch": "^5.2.6",
"axios": "^1.13.2",
"better-sqlite3": "^11.10.0",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"evoltagent": "1.1.5",
"js-yaml": "^4.1.1",
"pixelmatch": "^7.1.0",
"prompts": "^2.4.2"
},
"peerDependencies": {
"playwright": "^1.57.0",
"sharp": "^0.34.5"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"sharp": {
"optional": true
}
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.0.0 <25.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"protobufjs"
]
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}