@kedataindo/docflow-element 0.0.3 → 0.0.4
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/LICENSE +44 -0
- package/package.json +9 -9
package/LICENSE
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
DocFlow — Proprietary EULA Reference
|
|
2
|
+
|
|
3
|
+
Copyright © 2026 PT Kedata Indonesia (the "Licensor"). All rights reserved.
|
|
4
|
+
|
|
5
|
+
────────────────────────────────────────────────────────────────────────
|
|
6
|
+
THIS IS A TEMPLATE / SCAFFOLD FILE.
|
|
7
|
+
────────────────────────────────────────────────────────────────────────
|
|
8
|
+
This document is a placeholder summarising the licensing model. The
|
|
9
|
+
binding text is the **DocFlow End-User License Agreement (EULA)** to
|
|
10
|
+
be supplied separately to each customer, paired with a signed Order
|
|
11
|
+
Form (per-deal price + tier + connection cap + server-instance cap).
|
|
12
|
+
Until the EULA is reviewed by counsel and published, you may treat
|
|
13
|
+
this file as the canonical statement that:
|
|
14
|
+
|
|
15
|
+
1. The DocFlow software is proprietary and NOT open-source.
|
|
16
|
+
2. No rights are granted by viewing the source code unless the
|
|
17
|
+
customer has accepted the EULA in writing.
|
|
18
|
+
3. The bundled third-party components listed in `NOTICE` keep
|
|
19
|
+
their original open-source licenses (mostly MIT).
|
|
20
|
+
|
|
21
|
+
The "MIT" placeholder in `README.md` (carried over from before the
|
|
22
|
+
proprietary decision) is **incorrect** and is updated by PR #90
|
|
23
|
+
(replace "MIT" → "Proprietary — see LICENSE + NOTICE").
|
|
24
|
+
────────────────────────────────────────────────────────────────────────
|
|
25
|
+
|
|
26
|
+
Licensing model (per PRD §5 — proprietary EULA + separate MSA):
|
|
27
|
+
|
|
28
|
+
• DocFlow EULA (End-User License Agreement) — perpetual,
|
|
29
|
+
non-exclusive, non-transferable, metered per simultaneous
|
|
30
|
+
connection per server instance. Standard tiers: Community (free,
|
|
31
|
+
no warranty), Professional, Enterprise, Government. Hosting
|
|
32
|
+
DocFlow as a third-party SaaS is **prohibited** without a
|
|
33
|
+
separate OEM/SaaS agreement.
|
|
34
|
+
• Maintenance & Support Agreement (MSA) — annual, separate from
|
|
35
|
+
the EULA. Required for Professional / Enterprise / Government
|
|
36
|
+
for SLA-backed support; optional for Community.
|
|
37
|
+
• Source-code escrow (Government tier) — source code is deposited
|
|
38
|
+
with an escrow agent; released to the licensee if the Licensor
|
|
39
|
+
ceases to operate or fails the maintenance SLA.
|
|
40
|
+
|
|
41
|
+
Governing law: Republic of Indonesia (UU Hak Cipta No. 28/2014).
|
|
42
|
+
Dispute venue: District Court of Central Jakarta.
|
|
43
|
+
|
|
44
|
+
For licensing questions: legal@kedata.co
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kedataindo/docflow-element",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -20,14 +20,9 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "vite build && tsup src/index.ts --format cjs && vue-tsc --project tsconfig.build.json --emitDeclarationOnly",
|
|
25
|
-
"typecheck": "vue-tsc --noEmit",
|
|
26
|
-
"test:unit": "vitest run"
|
|
27
|
-
},
|
|
28
23
|
"dependencies": {
|
|
29
|
-
"@kedataindo/docflow-core": "0.0.
|
|
30
|
-
"@kedataindo/docflow-vue": "0.0.
|
|
24
|
+
"@kedataindo/docflow-core": "0.0.4",
|
|
25
|
+
"@kedataindo/docflow-vue": "0.0.7"
|
|
31
26
|
},
|
|
32
27
|
"peerDependencies": {
|
|
33
28
|
"vue": "^3.5.0"
|
|
@@ -42,5 +37,10 @@
|
|
|
42
37
|
"vite": "^5.4.10",
|
|
43
38
|
"vitest": "^2.1.3",
|
|
44
39
|
"vue-tsc": "^2.1.6"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "vite build && tsup src/index.ts --format cjs && vue-tsc --project tsconfig.build.json --emitDeclarationOnly",
|
|
43
|
+
"typecheck": "vue-tsc --noEmit",
|
|
44
|
+
"test:unit": "vitest run"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|