@timeax/digital-service-engine 0.0.2 → 0.0.3
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/dist/core/index.cjs +15 -15
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +2 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +15 -15
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.cjs +145 -56
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +32 -9
- package/dist/react/index.d.ts +32 -9
- package/dist/react/index.js +145 -56
- package/dist/react/index.js.map +1 -1
- package/dist/schema/index.d.cts +1 -0
- package/dist/schema/index.d.ts +1 -0
- package/dist/workspace/index.cjs +100 -23
- package/dist/workspace/index.cjs.map +1 -1
- package/dist/workspace/index.d.cts +25 -1
- package/dist/workspace/index.d.ts +25 -1
- package/dist/workspace/index.js +100 -23
- package/dist/workspace/index.js.map +1 -1
- package/package.json +106 -106
package/package.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@timeax/digital-service-engine",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Headless service props builder + minimal React Flow workspace.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./dist/schema/index.d.ts",
|
|
9
|
-
"import": "./dist/schema/index.js",
|
|
10
|
-
"require": "./dist/schema/index.cjs"
|
|
11
|
-
},
|
|
12
|
-
"./schema": {
|
|
13
|
-
"types": "./dist/schema/index.d.ts",
|
|
14
|
-
"import": "./dist/schema/index.js",
|
|
15
|
-
"require": "./dist/schema/index.cjs"
|
|
16
|
-
},
|
|
17
|
-
"./core": {
|
|
18
|
-
"types": "./dist/core/index.d.ts",
|
|
19
|
-
"import": "./dist/core/index.js",
|
|
20
|
-
"require": "./dist/core/index.cjs"
|
|
21
|
-
},
|
|
22
|
-
"./react": {
|
|
23
|
-
"types": "./dist/react/index.d.ts",
|
|
24
|
-
"import": "./dist/react/index.js",
|
|
25
|
-
"require": "./dist/react/index.cjs"
|
|
26
|
-
},
|
|
27
|
-
"./workspace": {
|
|
28
|
-
"types": "./dist/workspace/index.d.ts",
|
|
29
|
-
"import": "./dist/workspace/index.js",
|
|
30
|
-
"require": "./dist/workspace/index.cjs"
|
|
31
|
-
},
|
|
32
|
-
"./json/service-props": "./schema/service-props.schema.json",
|
|
33
|
-
"./json/editor-snapshot": "./schema/editor-snapshot.schema.json",
|
|
34
|
-
"./json/policies": "./schema/policies.schema.json"
|
|
35
|
-
},
|
|
36
|
-
"types": "./dist/schema/index.d.ts",
|
|
37
|
-
"files": [
|
|
38
|
-
"dist/",
|
|
39
|
-
"schema/"
|
|
40
|
-
],
|
|
41
|
-
"scripts": {
|
|
42
|
-
"clean": "rimraf dist",
|
|
43
|
-
"build": "npm run clean && tsup && node scripts/generate-schemas.mjs",
|
|
44
|
-
"dev": "tsup --watch",
|
|
45
|
-
"typecheck": "tsc --noEmit",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"build:schema": "node scripts/generate-schemas.mjs",
|
|
48
|
-
"prepublishOnly": "npm run typecheck && npm test && npm run build",
|
|
49
|
-
"postpublish": "git push --follow-tags && npm version patch"
|
|
50
|
-
},
|
|
51
|
-
"repository": {
|
|
52
|
-
"type": "git",
|
|
53
|
-
"url": "https://github.com/timeax/digital-service-engine.git"
|
|
54
|
-
},
|
|
55
|
-
"private": false,
|
|
56
|
-
"author": "Timothy Okpako David",
|
|
57
|
-
"publishConfig": {
|
|
58
|
-
"access": "public"
|
|
59
|
-
},
|
|
60
|
-
"sideEffects": false,
|
|
61
|
-
"peerDependencies": {
|
|
62
|
-
"react": "^19.0.0",
|
|
63
|
-
"react-day-picker": "^9.8.1",
|
|
64
|
-
"react-dom": "^19.0.0",
|
|
65
|
-
"reactflow": "^11.11.4"
|
|
66
|
-
},
|
|
67
|
-
"devDependencies": {
|
|
68
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
69
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
70
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
71
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
72
|
-
"@types/lodash-es": "^4.17.12",
|
|
73
|
-
"@types/node": "^25.0.9",
|
|
74
|
-
"@types/react": "^18.3.28",
|
|
75
|
-
"@types/react-dom": "^18.3.7",
|
|
76
|
-
"@vitejs/plugin-react": "^5.1.2",
|
|
77
|
-
"jsdom": "^27.4.0",
|
|
78
|
-
"prettier": "^3.6.2",
|
|
79
|
-
"react": "^19.2.4",
|
|
80
|
-
"react-dom": "^19.2.4",
|
|
81
|
-
"reactflow": "^11.11.4",
|
|
82
|
-
"rimraf": "^5.0.10",
|
|
83
|
-
"ts-json-schema-generator": "^2.4.0",
|
|
84
|
-
"tsup": "^8.5.0",
|
|
85
|
-
"typescript": "^5.9.2",
|
|
86
|
-
"vitest": "^1.6.1"
|
|
87
|
-
},
|
|
88
|
-
"dependencies": {
|
|
89
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
90
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
91
|
-
"@radix-ui/react-separator": "^1.1.7",
|
|
92
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
93
|
-
"@timeax/cache-store": "^0.0.1",
|
|
94
|
-
"@timeax/form-palette": "^0.1.28",
|
|
95
|
-
"class-variance-authority": "^0.7.1",
|
|
96
|
-
"clsx": "^2.1.1",
|
|
97
|
-
"elkjs": "^0.11.0",
|
|
98
|
-
"lodash-es": "^4.17.21",
|
|
99
|
-
"lucide-react": "^0.548.0",
|
|
100
|
-
"react-icons": "^5.5.0",
|
|
101
|
-
"react-resizable-panels": "^3.0.6",
|
|
102
|
-
"tailwind-merge": "^3.3.1",
|
|
103
|
-
"tw-animate-css": "^1.4.0",
|
|
104
|
-
"vaul": "^1.1.2"
|
|
105
|
-
}
|
|
106
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@timeax/digital-service-engine",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Headless service props builder + minimal React Flow workspace.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/schema/index.d.ts",
|
|
9
|
+
"import": "./dist/schema/index.js",
|
|
10
|
+
"require": "./dist/schema/index.cjs"
|
|
11
|
+
},
|
|
12
|
+
"./schema": {
|
|
13
|
+
"types": "./dist/schema/index.d.ts",
|
|
14
|
+
"import": "./dist/schema/index.js",
|
|
15
|
+
"require": "./dist/schema/index.cjs"
|
|
16
|
+
},
|
|
17
|
+
"./core": {
|
|
18
|
+
"types": "./dist/core/index.d.ts",
|
|
19
|
+
"import": "./dist/core/index.js",
|
|
20
|
+
"require": "./dist/core/index.cjs"
|
|
21
|
+
},
|
|
22
|
+
"./react": {
|
|
23
|
+
"types": "./dist/react/index.d.ts",
|
|
24
|
+
"import": "./dist/react/index.js",
|
|
25
|
+
"require": "./dist/react/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./workspace": {
|
|
28
|
+
"types": "./dist/workspace/index.d.ts",
|
|
29
|
+
"import": "./dist/workspace/index.js",
|
|
30
|
+
"require": "./dist/workspace/index.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./json/service-props": "./schema/service-props.schema.json",
|
|
33
|
+
"./json/editor-snapshot": "./schema/editor-snapshot.schema.json",
|
|
34
|
+
"./json/policies": "./schema/policies.schema.json"
|
|
35
|
+
},
|
|
36
|
+
"types": "./dist/schema/index.d.ts",
|
|
37
|
+
"files": [
|
|
38
|
+
"dist/",
|
|
39
|
+
"schema/"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"clean": "rimraf dist",
|
|
43
|
+
"build": "npm run clean && tsup && node scripts/generate-schemas.mjs",
|
|
44
|
+
"dev": "tsup --watch",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"build:schema": "node scripts/generate-schemas.mjs",
|
|
48
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run build",
|
|
49
|
+
"postpublish": "git push --follow-tags && npm version patch"
|
|
50
|
+
},
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "https://github.com/timeax/digital-service-engine.git"
|
|
54
|
+
},
|
|
55
|
+
"private": false,
|
|
56
|
+
"author": "Timothy Okpako David",
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
},
|
|
60
|
+
"sideEffects": false,
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": "^19.0.0",
|
|
63
|
+
"react-day-picker": "^9.8.1",
|
|
64
|
+
"react-dom": "^19.0.0",
|
|
65
|
+
"reactflow": "^11.11.4"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
69
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
70
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
71
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
72
|
+
"@types/lodash-es": "^4.17.12",
|
|
73
|
+
"@types/node": "^25.0.9",
|
|
74
|
+
"@types/react": "^18.3.28",
|
|
75
|
+
"@types/react-dom": "^18.3.7",
|
|
76
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
77
|
+
"jsdom": "^27.4.0",
|
|
78
|
+
"prettier": "^3.6.2",
|
|
79
|
+
"react": "^19.2.4",
|
|
80
|
+
"react-dom": "^19.2.4",
|
|
81
|
+
"reactflow": "^11.11.4",
|
|
82
|
+
"rimraf": "^5.0.10",
|
|
83
|
+
"ts-json-schema-generator": "^2.4.0",
|
|
84
|
+
"tsup": "^8.5.0",
|
|
85
|
+
"typescript": "^5.9.2",
|
|
86
|
+
"vitest": "^1.6.1"
|
|
87
|
+
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
90
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
91
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
92
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
93
|
+
"@timeax/cache-store": "^0.0.1",
|
|
94
|
+
"@timeax/form-palette": "^0.1.28",
|
|
95
|
+
"class-variance-authority": "^0.7.1",
|
|
96
|
+
"clsx": "^2.1.1",
|
|
97
|
+
"elkjs": "^0.11.0",
|
|
98
|
+
"lodash-es": "^4.17.21",
|
|
99
|
+
"lucide-react": "^0.548.0",
|
|
100
|
+
"react-icons": "^5.5.0",
|
|
101
|
+
"react-resizable-panels": "^3.0.6",
|
|
102
|
+
"tailwind-merge": "^3.3.1",
|
|
103
|
+
"tw-animate-css": "^1.4.0",
|
|
104
|
+
"vaul": "^1.1.2"
|
|
105
|
+
}
|
|
106
|
+
}
|