@arpproject/recrate 0.1.7-test6 → 0.1.7-test7
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 +19 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arpproject/recrate",
|
|
3
|
-
"version": "0.1.7-
|
|
3
|
+
"version": "0.1.7-test7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
|
|
6
6
|
"main": "./dist/recrate.es.js",
|
|
@@ -8,24 +8,16 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
|
|
10
10
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"import": "./dist/recrate.es.js"
|
|
14
|
-
},
|
|
11
|
+
".": "./dist/recrate.es.js",
|
|
15
12
|
"./style.css": "./dist/recrate.css"
|
|
16
13
|
},
|
|
17
14
|
|
|
18
15
|
"files": [
|
|
19
16
|
"dist",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"package.json"
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"README.md"
|
|
23
19
|
],
|
|
24
20
|
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"react": ">=18",
|
|
27
|
-
"react-dom": ">=18"
|
|
28
|
-
},
|
|
29
21
|
"dependencies": {
|
|
30
22
|
"@codemirror/lang-javascript": "^6.2.3",
|
|
31
23
|
"@codemirror/state": "^6.5.2",
|
|
@@ -61,9 +53,10 @@
|
|
|
61
53
|
"validator": "^13.15.0",
|
|
62
54
|
"zustand": "^5.0.4"
|
|
63
55
|
},
|
|
56
|
+
|
|
64
57
|
"scripts": {
|
|
65
58
|
"start": "vite",
|
|
66
|
-
"build": "vite build",
|
|
59
|
+
"build": "vite build && rollup -c",
|
|
67
60
|
"storybook": "storybook dev -p 6006",
|
|
68
61
|
"build-storybook": "storybook build",
|
|
69
62
|
"update-dependencies": "bash -x ./update-deps.sh",
|
|
@@ -76,12 +69,14 @@
|
|
|
76
69
|
"storybook:hu": "STORYBOOK_LANG=hu storybook dev -p 6006",
|
|
77
70
|
"docs": "npx typedoc --skipErrorChecking && npx serve docs"
|
|
78
71
|
},
|
|
72
|
+
|
|
79
73
|
"eslintConfig": {
|
|
80
74
|
"extends": [
|
|
81
75
|
"react-app",
|
|
82
76
|
"react-app/jest"
|
|
83
77
|
]
|
|
84
78
|
},
|
|
79
|
+
|
|
85
80
|
"browserslist": {
|
|
86
81
|
"production": [
|
|
87
82
|
">0.2%",
|
|
@@ -94,6 +89,7 @@
|
|
|
94
89
|
"last 1 safari version"
|
|
95
90
|
]
|
|
96
91
|
},
|
|
92
|
+
|
|
97
93
|
"devDependencies": {
|
|
98
94
|
"@babel/preset-env": "^7.27.2",
|
|
99
95
|
"@tailwindcss/postcss": "^4.1.16",
|
|
@@ -134,8 +130,18 @@
|
|
|
134
130
|
"postcss-preset-env": "^10.1.6",
|
|
135
131
|
"react": "^18.2.0",
|
|
136
132
|
"react-dom": "^18.2.0",
|
|
133
|
+
"rollup": "^4.0.0",
|
|
134
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
135
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
136
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
137
|
+
"cssnano": "^6.1.2",
|
|
137
138
|
"storybook": "^8.6.12",
|
|
138
139
|
"typescript": "^5.4.3",
|
|
139
140
|
"vite": "^6.0.0"
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
"peerDependencies": {
|
|
144
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
145
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
140
146
|
}
|
|
141
147
|
}
|