-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.93 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
{
"name": "opendesignlab",
"version": "0.1.4",
"private": false,
"description": "A design lab for combining layout and style attributes into previews, prompts, and implementation-ready snippets.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pandaofwild/OpenDesignLab.git"
},
"bugs": {
"url": "https://github.com/pandaofwild/OpenDesignLab/issues"
},
"homepage": "https://github.com/pandaofwild/OpenDesignLab#readme",
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"check:data": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-data.mjs",
"check:cute-casual": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-cute-casual.mjs",
"check:future-digital": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-future-digital.mjs",
"check:street-subculture": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-street-subculture.mjs",
"check:style-distinction": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-style-distinction.mjs",
"check:style-refs": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/check-style-references.mjs",
"capture:refs": "node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/capture-references.mjs"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"next": "16.2.7",
"pretendard": "^1.3.9",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"overrides": {
"postcss": "8.5.15"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"playwright": "^1.49.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}