-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.27 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
{
"name": "imprint",
"productName": "Imprint",
"version": "0.0.2",
"description": "Extract website UI design styles and export as CSS/Tailwind themes for AI to use",
"author": "woai3c",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/woai3c/imprint.git"
},
"main": ".vite/build/index.js",
"private": true,
"packageManager": "pnpm@10.7.1",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "electron-forge start",
"build": "electron-forge package",
"build:cli": "tsc -p tsconfig.cli.json",
"make": "electron-forge make",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm build && pnpm build:cli && node --test tests/e2e/*.test.mjs",
"test:all": "pnpm test && pnpm test:e2e",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"ci": "pnpm typecheck && pnpm lint && pnpm test && pnpm build",
"release": "node scripts/release.mjs",
"release:check": "pnpm typecheck && pnpm exec eslint . && pnpm format:check",
"release:verify": "node scripts/verify-release.mjs",
"release:notes": "node scripts/extract-release-notes.mjs",
"release:collect": "node scripts/collect-release-artifacts.mjs",
"prepare": "husky",
"test:benchmark": "vitest run -c vitest.benchmark.config.ts",
"test:benchmark:live": "node scripts/benchmark-live.mjs"
},
"bin": {
"imprint": "./dist/cli/index.js",
"imprint-mcp": "./dist/mcp/server.js"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.20",
"better-sqlite3": "^11.0.0",
"i18next": "^26.3.6",
"playwright-core": "^1.50.0",
"react-i18next": "^17.0.11",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"uuid": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@electron-forge/cli": "^7.0.0",
"@electron-forge/maker-dmg": "^7.0.0",
"@electron-forge/maker-zip": "^7.0.0",
"@electron-forge/plugin-vite": "^7.0.0",
"@tailwindcss/vite": "^4.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/better-sqlite3": "^7.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "4.1.10",
"electron": "^34.0.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"lucide-react": "^0.500.0",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "4.1.10",
"zustand": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,mjs}": [
"prettier --write"
],
"*.{json,md,yaml,css}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"appdmg",
"better-sqlite3",
"ds-store",
"electron",
"electron-winstaller",
"esbuild",
"fs-xattr",
"macos-alias"
]
}
}