-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 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
{
"name": "@squonk/mui-theme",
"version": "6.0.1",
"type": "module",
"description": "MUI theme used on Squonk products",
"sideEffects": false,
"repository": "https://github.com/InformaticsMatters/squonk-react-mui-theme",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/InformaticsMatters/squonk-react-mui-theme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"provenance": true
},
"scripts": {
"prepare": "husky install",
"build": "tsdown",
"start": "tsdown --watch",
"tsc": "tsc --pretty --noEmit",
"lint": "eslint --cache --max-warnings=0",
"format": "eslint --fix --cache --max-warnings=0"
},
"peerDependencies": {
"@mui/material": ">=8.0",
"@emotion/react": ">=11",
"@emotion/styled": ">=11"
},
"devDependencies": {
"@mui/material": "9.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@squonk/eslint-config": "3.0.0",
"@types/node": "24.12.2",
"eslint": "9.25.1",
"husky": "8.0.1",
"lint-staged": "15.5.0",
"prettier": "3.8.3",
"semantic-release": "25.0.2",
"tsdown": "0.18.3",
"tslib": "2.8.1",
"typescript": "6.0.3"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.@(json|md|css)": [
"prettier --write"
]
}
}