@mage-ui/components 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mage-ui/components",
|
|
3
|
+
"version": "0.0.10",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "",
|
|
6
|
+
"keywords": [],
|
|
7
|
+
"author": "",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"exports": {
|
|
10
|
+
"./panda.json": "./dist/panda.json",
|
|
11
|
+
".": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"main": "dist/index.js",
|
|
17
|
+
"module": "dist/index.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@mantine/core": "^8.0.0",
|
|
21
|
+
"@mantine/dates": "^8.0.1",
|
|
22
|
+
"@mantine/hooks": "^8.0.0",
|
|
23
|
+
"@pandabox/define-recipe": "^0.0.3",
|
|
24
|
+
"@pandacss/dev": "^0.53.4",
|
|
25
|
+
"@pandacss/types": "^0.53.4",
|
|
26
|
+
"react": "^19.1.0",
|
|
27
|
+
"react-dom": "^19.1.0",
|
|
28
|
+
"react-hook-form": "^7.56.3",
|
|
29
|
+
"@mage-ui/preset": "0.0.10",
|
|
30
|
+
"@mage-ui/styled-system": "0.0.10"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@biomejs/biome": "^1.9.4",
|
|
34
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
35
|
+
"@swc/core": "^1.11.21",
|
|
36
|
+
"@swc/helpers": "^0.5.17",
|
|
37
|
+
"@types/node": "^22.14.1",
|
|
38
|
+
"@types/react": "^19.1.2",
|
|
39
|
+
"@types/react-dom": "^19.1.2",
|
|
40
|
+
"rimraf": "^6.0.1",
|
|
41
|
+
"rollup": "^4.40.0",
|
|
42
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
43
|
+
"rollup-plugin-swc3": "^0.12.1",
|
|
44
|
+
"rollup-preserve-directives": "^1.1.3",
|
|
45
|
+
"tsc-alias": "^1.8.15",
|
|
46
|
+
"typescript": "^5.8.3"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=22.14.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "pnpm build:fast && pnpm build:types",
|
|
53
|
+
"build:fast": "env NODE_ENV=production rimraf dist && panda codegen && rollup -c ./rollup.config.mjs && panda ship -o dist/panda.json",
|
|
54
|
+
"build:types": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
|
|
55
|
+
"clean": "rimraf dist node_modules styled-system",
|
|
56
|
+
"dev": "env NODE_ENV=development rollup -c ./rollup.config.mjs --watch --watch.onStart='panda codegen && panda ship -o dist/panda.json && pnpm build:types'",
|
|
57
|
+
"lint": "biome check --write"
|
|
58
|
+
}
|
|
59
|
+
}
|