@quan-erp/shared-types 1.0.0 → 1.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/LICENSE.md +49 -0
- package/README.md +5 -0
- package/package.json +5 -4
package/LICENSE.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# QuarkERP License
|
|
2
|
+
|
|
3
|
+
**Copyright (c) 2026 The Paradance. All rights reserved.**
|
|
4
|
+
|
|
5
|
+
This software is owned by **The Paradance** and is actively maintained and developed by **Jian Shang Quan**.
|
|
6
|
+
|
|
7
|
+
This QuarkERP License (the "License") governs use of this software and its associated source code, binaries, types, documentation, and assets (the "Software").
|
|
8
|
+
|
|
9
|
+
By installing, importing, or otherwise using the Software, you agree to this License.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 1. Permitted use — Quark ERP plugins only
|
|
14
|
+
|
|
15
|
+
You may use the Software **only** to develop, build, test, and run **plugins for Quark ERP** (also known as Quan ERP), including:
|
|
16
|
+
|
|
17
|
+
- Importing the published npm packages as dependencies of a Quark ERP plugin
|
|
18
|
+
- Calling the public APIs, types, and UI components exposed by those packages
|
|
19
|
+
- Shipping a plugin that runs on a licensed Quark ERP host
|
|
20
|
+
|
|
21
|
+
Your plugin's own original code remains yours. This License does not transfer ownership of the Software.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 2. Prohibited use
|
|
26
|
+
|
|
27
|
+
You may **not**:
|
|
28
|
+
|
|
29
|
+
- Copy, fork, or redistribute the Software (source or compiled) except as an npm dependency of a Quark ERP plugin
|
|
30
|
+
- Use the Software as the core, framework, or design system of any product that is not a Quark ERP plugin
|
|
31
|
+
- Reuse, rebrand, sublicense, or sell the Software for any other purpose
|
|
32
|
+
- Create a competing ERP, plugin platform, UI kit, or backend framework from the Software
|
|
33
|
+
- Remove or obscure copyright, license, or proprietary notices
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 3. No transfer of ownership
|
|
38
|
+
|
|
39
|
+
The Software is licensed, not sold. Copyright, title, and all intellectual property rights remain with **The Paradance**. The Software is actively maintained and developed by **Jian Shang Quan**.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 4. No warranty
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE PARADANCE OR JIAN SHANG QUAN BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM USE OF THE SOFTWARE.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
*QuarkERP License — The Paradance. For inquiries, contact Jian Shang Quan.*
|
package/README.md
CHANGED
|
@@ -78,3 +78,8 @@ Basic structures shared across all layers of the ERP to ensure data consistency.
|
|
|
78
78
|
|
|
79
79
|
> [!NOTE]
|
|
80
80
|
> This package should be considered a **stable contract**. Breaking changes here will require updates across the entire plugin ecosystem.
|
|
81
|
+
|
|
82
|
+
## License
|
|
83
|
+
|
|
84
|
+
[QuarkERP License](./LICENSE.md) — owned by The Paradance, actively maintained and developed by Jian Shang Quan. You may use this package to build Quark ERP plugins. Copying or reuse for any other purpose is not permitted.
|
|
85
|
+
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quan-erp/shared-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "types/index.d.ts",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"publish:registry": "npm run build && npm publish --tag beta",
|
|
9
|
-
"publish:npm-registry": "npm run build && npm publish --access public --
|
|
9
|
+
"publish:npm-registry": "npm run build && npm publish --access public --registry https://registry.npmjs.org/ --@quan-erp:registry=https://registry.npmjs.org/",
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
11
|
"release:beta": "npm publish --tag beta",
|
|
12
12
|
"build": "tsc"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
|
-
"dist"
|
|
15
|
+
"dist",
|
|
16
|
+
"LICENSE.md"
|
|
16
17
|
],
|
|
17
18
|
"exports": {
|
|
18
19
|
".": {
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
},
|
|
23
24
|
"keywords": [],
|
|
24
25
|
"author": "",
|
|
25
|
-
"license": "
|
|
26
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
26
27
|
"type": "module",
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@types/node": "^24.10.1",
|