forked from mattpocock/tt-package-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.77 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.77 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
121
122
123
{
"name": "material-theme-builder",
"version": "2.1.2",
"description": "m3 color-system for JS/TS ecosystem",
"keywords": [
"react",
"component",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tailwind.css": "./dist/tailwind.css"
},
"homepage": "https://github.com/abernier/material-theme-builder",
"bugs": {
"url": "https://github.com/abernier/material-theme-builder/issues"
},
"author": "abernier",
"repository": {
"type": "git",
"url": "git+https://github.com/abernier/material-theme-builder.git"
},
"license": "MIT",
"files": [
"dist",
"src/tailwind.css"
],
"bin": {
"material-theme-builder": "./dist/cli.js"
},
"type": "module",
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@abernier/radix-list": "^1.0.2",
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/cli": "^2.27.7",
"@chromatic-com/storybook": "^5.0.0",
"@eslint/js": "^10.0.1",
"@figma/plugin-typings": "^1.123.0",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-themes": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/culori": "^4.0.1",
"@types/d3": "^7.4.3",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/seedrandom": "^3.0.8",
"@vitejs/plugin-react": "^5.1.2",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"chromatic": "^15.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"culori": "^4.0.2",
"d3": "^7.9.0",
"eslint": "^10.0.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^4.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"lucide-react": "^0.576.0",
"postcss": "^8.5.6",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.3.0",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"seedrandom": "^3.0.5",
"shadcn": "^3.8.5",
"simplex-noise": "^4.0.3",
"storybook": "^10.1.11",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tsup": "^8.2.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.55.0",
"usehooks-ts": "^3.1.1",
"vite": "^7.3.1",
"vite-plugin-singlefile": "2.3.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.16"
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lgtm": "pnpm run build && pnpm run build-figma && pnpm run lint && pnpm run check-format && pnpm run check-exports && pnpm run typecheck && pnpm run test",
"typecheck": "tsc",
"test": "vitest run",
"pretest": "bash scripts/download-dtcg-schemas.sh",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules cjs-resolves-to-esm no-resolution",
"release": "pnpm run build && changeset publish",
"local-release": "pnpm run lgtm && changeset version && changeset publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-figma": "vite build --config figma-plugin/vite.config.ts && tsup --config figma-plugin/tsup.config.ts",
"chromatic": "chromatic --project-token $CHROMATIC_PROJECT_TOKEN",
"prepare": "pnpm run pretest && husky",
"changeset": "pnpm exec changeset"
},
"peerDependencies": {
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"commander": "^14.0.3",
"lodash-es": "^4.17.22",
"zod": "^4.3.6"
}
}