-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.72 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
{
"name": "react-material-expressive",
"version": "1.1.2",
"description": "Material 3 Expressive React component library. Framework-agnostic, precompiled CSS, official M3 design tokens.",
"author": "Ger Silva",
"homepage": "https://github.com/gersilva96/react-material-expressive#readme",
"llmsTxt": "./llms.txt",
"repository": {
"type": "git",
"url": "git+https://github.com/gersilva96/react-material-expressive.git"
},
"bugs": {
"url": "https://github.com/gersilva96/react-material-expressive/issues"
},
"keywords": [
"react",
"material-design",
"material-3",
"m3-expressive",
"components",
"design-system",
"tailwind"
],
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"sideEffects": [
"*.css"
],
"files": [
"dist",
"docs",
"CHANGELOG.md",
"README.md",
"llms.txt"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css",
"./llms.txt": "./llms.txt",
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf dist",
"build:css": "tailwindcss -i src/styles.css -o dist/styles.css --minify",
"build:lib": "tsup",
"copy:themes": "node scripts/copy-themes.mjs",
"build": "npm run clean && npm run build:css && npm run build:lib && npm run copy:themes",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"pack:dry": "npm pack --dry-run",
"prepack": "npm run build",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"clsx": "2.1.1",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/cli": "4.3.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest-axe": "3.5.9",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"eslint": "10.4.1",
"globals": "17.6.0",
"jest-axe": "10.0.0",
"jiti": "2.7.0",
"jsdom": "29.1.1",
"prettier": "3.8.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"rimraf": "6.1.3",
"tailwindcss": "4.3.0",
"tsup": "8.5.1",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vitest": "4.1.9"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}