@kedataindo/docflow-core 0.0.3 → 0.0.5

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.
Files changed (2) hide show
  1. package/LICENSE +44 -0
  2. package/package.json +7 -7
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-core",
3
3
  "license": "UNLICENSED",
4
- "version": "0.0.3",
4
+ "version": "0.0.5",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -20,11 +20,6 @@
20
20
  "files": [
21
21
  "dist"
22
22
  ],
23
- "scripts": {
24
- "build": "tsup",
25
- "typecheck": "tsc --noEmit",
26
- "test:unit": "vitest run"
27
- },
28
23
  "dependencies": {
29
24
  "@tiptap/core": "^2.11.0",
30
25
  "@tiptap/extension-collaboration": "^2.27.2",
@@ -69,5 +64,10 @@
69
64
  "tsup": "^8.3.0",
70
65
  "typescript": "^5.6.3",
71
66
  "vitest": "^2.1.3"
67
+ },
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "typecheck": "tsc --noEmit",
71
+ "test:unit": "vitest run"
72
72
  }
73
- }
73
+ }