-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.93 KB
/
package.json
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": "@umami/react-zen",
"version": "0.41.0",
"description": "React components built by Umami",
"author": "Umami <[email protected]>",
"license": "MIT",
"homepage": "https://umami.is/zen",
"repository": {
"type": "git",
"url": "https://github.com/umami-software/react-zen.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"styles.css"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "next dev -p 9000 --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"icons": "svgr ./src/assets --out-dir ./src/components/icons --typescript",
"types": "tsc -p tsconfig.build.json",
"esbuild": "node esbuild.mjs",
"rollup": "rollup -c",
"dts": "node dts.mjs",
"css": "node css.mjs",
"bundle": "npm-run-all types dts esbuild css"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.css": [
"stylelint --fix",
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"dependencies": {
"@fontsource/jetbrains-mono": "^5.0.18",
"@react-spring/web": "^9.7.5",
"@umami/esbuild-plugin-css-modules": "0.4.0",
"@umami/shiso": "^0.29.0",
"classnames": "^2.5.1",
"dts-bundle": "^0.7.3",
"glob": "^10.3.10",
"next": "15.1.3",
"react": "^19.0.0",
"react-aria-components": "^1.5.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"thenby": "^1.3.4",
"zustand": "^5.0.2"
},
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "^0.2.4",
"@react-aria/optimize-locales-plugin": "^1.1.3",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/mdx": "^2.0.11",
"@types/node": "^22.10.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"babel-plugin-inline-react-svg": "^2.0.2",
"babel-plugin-syntax-hermes-parser": "^0.26.0",
"esbuild": "^0.24.2",
"esbuild-css-modules-plugin": "^3.1.2",
"esbuild-plugin-svgr": "^3.1.0",
"esbuild-postcss": "^0.0.4",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.1",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rollup": "^4.29.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^14.0.1",
"typescript": "^5.6.3"
}
}