@pyreon/meta 0.26.3 → 0.27.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 +49 -45
package/package.json
CHANGED
|
@@ -1,20 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyreon/meta",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.1",
|
|
4
4
|
"description": "Pyreon Meta — barrel package re-exporting the full Pyreon fundamentals ecosystem",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"
|
|
6
|
+
"homepage": "https://github.com/pyreon/pyreon/tree/main/packages/zero/meta#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/pyreon/pyreon/issues"
|
|
9
|
+
},
|
|
7
10
|
"repository": {
|
|
8
11
|
"type": "git",
|
|
9
12
|
"url": "https://github.com/pyreon/pyreon.git",
|
|
10
13
|
"directory": "packages/zero/meta"
|
|
11
14
|
},
|
|
12
|
-
"files": [
|
|
13
|
-
"lib",
|
|
14
|
-
"!lib/analysis",
|
|
15
|
-
"LICENSE",
|
|
16
|
-
"README.md"
|
|
17
|
-
],
|
|
18
15
|
"type": "module",
|
|
19
16
|
"sideEffects": false,
|
|
20
17
|
"main": "./lib/index.js",
|
|
@@ -26,6 +23,12 @@
|
|
|
26
23
|
"types": "./lib/types/index.d.ts"
|
|
27
24
|
}
|
|
28
25
|
},
|
|
26
|
+
"files": [
|
|
27
|
+
"lib",
|
|
28
|
+
"!lib/analysis",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
29
32
|
"scripts": {
|
|
30
33
|
"build": "vl_rolldown_build && tsc",
|
|
31
34
|
"dev": "vl_rolldown_build-watch",
|
|
@@ -33,48 +36,49 @@
|
|
|
33
36
|
"typecheck": "tsc --noEmit",
|
|
34
37
|
"lint": "oxlint ."
|
|
35
38
|
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@pyreon/reactivity": "^0.27.1"
|
|
41
|
+
},
|
|
36
42
|
"dependencies": {
|
|
37
|
-
"@pyreon/attrs": "^0.
|
|
38
|
-
"@pyreon/charts": "^0.
|
|
39
|
-
"@pyreon/code": "^0.
|
|
40
|
-
"@pyreon/connector-document": "^0.
|
|
41
|
-
"@pyreon/coolgrid": "^0.
|
|
42
|
-
"@pyreon/dnd": "^0.
|
|
43
|
-
"@pyreon/document": "^0.
|
|
44
|
-
"@pyreon/document-primitives": "^0.
|
|
45
|
-
"@pyreon/elements": "^0.
|
|
46
|
-
"@pyreon/feature": "^0.
|
|
47
|
-
"@pyreon/flow": "^0.
|
|
48
|
-
"@pyreon/form": "^0.
|
|
49
|
-
"@pyreon/hooks": "^0.
|
|
50
|
-
"@pyreon/hotkeys": "^0.
|
|
51
|
-
"@pyreon/i18n": "^0.
|
|
52
|
-
"@pyreon/kinetic": "^0.
|
|
53
|
-
"@pyreon/kinetic-presets": "^0.
|
|
54
|
-
"@pyreon/machine": "^0.
|
|
55
|
-
"@pyreon/permissions": "^0.
|
|
56
|
-
"@pyreon/query": "^0.
|
|
57
|
-
"@pyreon/rocketstyle": "^0.
|
|
58
|
-
"@pyreon/rx": "^0.
|
|
59
|
-
"@pyreon/state-tree": "^0.
|
|
60
|
-
"@pyreon/storage": "^0.
|
|
61
|
-
"@pyreon/store": "^0.
|
|
62
|
-
"@pyreon/styler": "^0.
|
|
63
|
-
"@pyreon/table": "^0.
|
|
64
|
-
"@pyreon/toast": "^0.
|
|
65
|
-
"@pyreon/ui-core": "^0.
|
|
66
|
-
"@pyreon/unistyle": "^0.
|
|
67
|
-
"@pyreon/url-state": "^0.
|
|
68
|
-
"@pyreon/validation": "^0.
|
|
69
|
-
"@pyreon/virtual": "^0.
|
|
43
|
+
"@pyreon/attrs": "^0.27.1",
|
|
44
|
+
"@pyreon/charts": "^0.27.1",
|
|
45
|
+
"@pyreon/code": "^0.27.1",
|
|
46
|
+
"@pyreon/connector-document": "^0.27.1",
|
|
47
|
+
"@pyreon/coolgrid": "^0.27.1",
|
|
48
|
+
"@pyreon/dnd": "^0.27.1",
|
|
49
|
+
"@pyreon/document": "^0.27.1",
|
|
50
|
+
"@pyreon/document-primitives": "^0.27.1",
|
|
51
|
+
"@pyreon/elements": "^0.27.1",
|
|
52
|
+
"@pyreon/feature": "^0.27.1",
|
|
53
|
+
"@pyreon/flow": "^0.27.1",
|
|
54
|
+
"@pyreon/form": "^0.27.1",
|
|
55
|
+
"@pyreon/hooks": "^0.27.1",
|
|
56
|
+
"@pyreon/hotkeys": "^0.27.1",
|
|
57
|
+
"@pyreon/i18n": "^0.27.1",
|
|
58
|
+
"@pyreon/kinetic": "^0.27.1",
|
|
59
|
+
"@pyreon/kinetic-presets": "^0.27.1",
|
|
60
|
+
"@pyreon/machine": "^0.27.1",
|
|
61
|
+
"@pyreon/permissions": "^0.27.1",
|
|
62
|
+
"@pyreon/query": "^0.27.1",
|
|
63
|
+
"@pyreon/rocketstyle": "^0.27.1",
|
|
64
|
+
"@pyreon/rx": "^0.27.1",
|
|
65
|
+
"@pyreon/state-tree": "^0.27.1",
|
|
66
|
+
"@pyreon/storage": "^0.27.1",
|
|
67
|
+
"@pyreon/store": "^0.27.1",
|
|
68
|
+
"@pyreon/styler": "^0.27.1",
|
|
69
|
+
"@pyreon/table": "^0.27.1",
|
|
70
|
+
"@pyreon/toast": "^0.27.1",
|
|
71
|
+
"@pyreon/ui-core": "^0.27.1",
|
|
72
|
+
"@pyreon/unistyle": "^0.27.1",
|
|
73
|
+
"@pyreon/url-state": "^0.27.1",
|
|
74
|
+
"@pyreon/validation": "^0.27.1",
|
|
75
|
+
"@pyreon/virtual": "^0.27.1"
|
|
70
76
|
},
|
|
71
77
|
"devDependencies": {
|
|
72
78
|
"@pyreon/vitest-config": "0.13.1"
|
|
73
79
|
},
|
|
74
|
-
"peerDependencies": {
|
|
75
|
-
"@pyreon/reactivity": "^0.26.3"
|
|
76
|
-
},
|
|
77
80
|
"publishConfig": {
|
|
78
81
|
"access": "public"
|
|
79
|
-
}
|
|
82
|
+
},
|
|
83
|
+
"author": "Vit Bokisch"
|
|
80
84
|
}
|