-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 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
{
"name": "design-memory",
"version": "0.1.0",
"description": "Extract and interpret design systems from websites",
"type": "module",
"main": "./dist/index.js",
"bin": {
"design-memory": "./dist/cli/main.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"test:integration": "RUN_INTEGRATION=1 vitest run src/acquire/capture.integration.test.ts",
"test:accuracy": "RUN_ACCURACY=1 vitest run src/tests/accuracy.test.ts",
"test:watch": "vitest --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"check-loc": "node scripts/check-loc.js",
"postinstall": "playwright install chromium",
"prepublishOnly": "npm run build && npm run check-loc"
},
"keywords": [
"design-system",
"extraction",
"crawling",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"css-tree": "^3.1.0",
"culori": "^4.0.2",
"dotenv": "^17.2.3",
"fs-extra": "^11.3.3",
"globby": "^16.1.0",
"loglevel": "^1.9.2",
"openai": "^6.17.0",
"ora": "^9.1.0",
"p-limit": "^7.2.0",
"playwright": "^1.58.1",
"prompts": "^2.4.2",
"sharp": "^0.34.5",
"undici": "^7.20.0",
"yaml": "^2.8.2",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}