@thienvu18/designable-react-settings-form 2.0.0 → 2.0.1
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 +26 -27
package/package.json
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thienvu18/designable-react-settings-form",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"homepage": "https://github.com/thienvu18/designable#readme",
|
|
5
|
+
"bugs": {
|
|
6
|
+
"url": "https://github.com/thienvu18/designable/issues"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/thienvu18/designable.git"
|
|
11
|
+
},
|
|
4
12
|
"license": "MIT",
|
|
5
13
|
"main": "lib/index.js",
|
|
6
14
|
"module": "esm/index.js",
|
|
@@ -11,43 +19,20 @@
|
|
|
11
19
|
"README.md",
|
|
12
20
|
"LICENSE.md"
|
|
13
21
|
],
|
|
14
|
-
"engines": {
|
|
15
|
-
"node": ">=20 <25"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/thienvu18/designable.git"
|
|
20
|
-
},
|
|
21
|
-
"bugs": {
|
|
22
|
-
"url": "https://github.com/thienvu18/designable/issues"
|
|
23
|
-
},
|
|
24
|
-
"homepage": "https://github.com/thienvu18/designable#readme",
|
|
25
22
|
"scripts": {
|
|
26
23
|
"build": "rimraf -rf lib esm && npm run build:cjs && npm run build:esm && ts-node copy",
|
|
27
24
|
"build:cjs": "tsc --project tsconfig.build.json --outDir lib",
|
|
28
25
|
"build:esm": "tsc --project tsconfig.build.json --module es2020 --outDir esm"
|
|
29
26
|
},
|
|
30
|
-
"peerDependencies": {
|
|
31
|
-
"@formily/core": ">=2.3.7 <3",
|
|
32
|
-
"@formily/react": ">=2.3.7 <3",
|
|
33
|
-
"@formily/reactive": ">=2.3.7 <3",
|
|
34
|
-
"@formily/reactive-react": ">=2.3.7 <3",
|
|
35
|
-
"@formily/shared": ">=2.3.7 <3",
|
|
36
|
-
"@thienvu18/formily-antd-v6": ">=2 <3",
|
|
37
|
-
"antd": ">=6 <7",
|
|
38
|
-
"react": ">=19 <20",
|
|
39
|
-
"react-dom": ">=19 <20"
|
|
40
|
-
},
|
|
41
27
|
"dependencies": {
|
|
42
28
|
"@babel/parser": "^7.24.0",
|
|
43
29
|
"@monaco-editor/react": "^4.6.0",
|
|
44
|
-
"@thienvu18/designable-core": "2.0.
|
|
45
|
-
"@thienvu18/designable-react": "2.0.
|
|
46
|
-
"@thienvu18/designable-shared": "2.0.
|
|
30
|
+
"@thienvu18/designable-core": "2.0.1",
|
|
31
|
+
"@thienvu18/designable-react": "2.0.1",
|
|
32
|
+
"@thienvu18/designable-shared": "2.0.1",
|
|
47
33
|
"classnames": "^2.3.2",
|
|
48
34
|
"monaco-editor": "^0.47.0",
|
|
49
35
|
"prettier": "^2.8.8",
|
|
50
|
-
"react-color": "^2.19.3",
|
|
51
36
|
"react-tiny-popover": "^8.1.6"
|
|
52
37
|
},
|
|
53
38
|
"devDependencies": {
|
|
@@ -65,6 +50,20 @@
|
|
|
65
50
|
"react-is": "^19.2.8",
|
|
66
51
|
"typescript": "5.2.2"
|
|
67
52
|
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@formily/core": ">=2.3.7 <3",
|
|
55
|
+
"@formily/react": ">=2.3.7 <3",
|
|
56
|
+
"@formily/reactive": ">=2.3.7 <3",
|
|
57
|
+
"@formily/reactive-react": ">=2.3.7 <3",
|
|
58
|
+
"@formily/shared": ">=2.3.7 <3",
|
|
59
|
+
"@thienvu18/formily-antd-v6": ">=2 <3",
|
|
60
|
+
"antd": ">=6 <7",
|
|
61
|
+
"react": ">=19 <20",
|
|
62
|
+
"react-dom": ">=19 <20"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=20 <25"
|
|
66
|
+
},
|
|
68
67
|
"publishConfig": {
|
|
69
68
|
"access": "public"
|
|
70
69
|
}
|