forked from nujovich/mint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.92 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
{
"name": "mint-ds",
"version": "0.1.0",
"description": "Audit legacy CSS, curate the chaos, and generate a clean design system. CLI + web playground.",
"keywords": [
"css",
"scss",
"design-system",
"design-tokens",
"tailwind",
"audit",
"cli",
"claude"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nujovich/mint.git"
},
"bugs": {
"url": "https://github.com/nujovich/mint/issues"
},
"homepage": "https://github.com/nujovich/mint#readme",
"bin": {
"mint-ds": "bin/mint-ds.mjs"
},
"files": [
"bin",
"lib/prompts.mjs",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"mint-ds": "node bin/mint-ds.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:record": "RECORD_FIXTURES=1 vitest run",
"lint": "next lint",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"release": "release-it",
"release:dry": "release-it --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@release-it/conventional-changelog": "^11.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitest/coverage-v8": "^3.1.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"husky": "^9.1.0",
"lint-staged": "^15.5.0",
"next": "^15.1.0",
"prettier": "^3.8.4",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"release-it": "^20.0.1",
"typescript": "^5.0.0",
"vitest": "^3.1.0"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx}": [
"next lint --file",
"prettier --check"
],
"*.{json,css,md}": "prettier --check"
}
}