-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@material-web-community/material-web-react",
"version": "1.0.0",
"description": "Material Web Community - React",
"homepage": "https://github.com/material-web-community/material-web-react#readme",
"bugs": {
"url": "https://github.com/material-web-community/material-web-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/material-web-community/material-web-react.git"
},
"license": "Apache-2.0",
"keywords": [
"material",
"material design",
"design system",
"components",
"web components",
"lit",
"react",
"react-components",
"material-react"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./styles": "./dist/styles.css",
".": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@fontsource/roboto": "^5.1.0",
"@lit/react": "^1.0.6",
"@material/web": "^2.4.0",
"material-symbols": "^0.35.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"copyfiles": "^2.4.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.4.3"
},
"scripts": {
"build": "tsc && copyfiles -u 1 src/**/*.tsx src/**/*.css dist/",
"build:clean": "rimraf dist && npm run build",
"typecheck": "tsc --noEmit",
"generate": "node generate.js && npm run format",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check ."
}
}