@contractspec/module.examples 0.0.0-canary-20260113170453
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 +21 -0
- package/README.md +21 -0
- package/dist/builtins.js +76 -0
- package/dist/builtins.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +7 -0
- package/dist/registry.d.ts +24 -0
- package/dist/registry.d.ts.map +1 -0
- package/dist/registry.js +33 -0
- package/dist/registry.js.map +1 -0
- package/dist/runtime/context.d.ts +45 -0
- package/dist/runtime/context.d.ts.map +1 -0
- package/dist/runtime/context.js +328 -0
- package/dist/runtime/context.js.map +1 -0
- package/dist/runtime/engine.d.ts +19 -0
- package/dist/runtime/engine.d.ts.map +1 -0
- package/dist/runtime/engine.js +81 -0
- package/dist/runtime/engine.js.map +1 -0
- package/dist/runtime/installer.d.ts +40 -0
- package/dist/runtime/installer.d.ts.map +1 -0
- package/dist/runtime/installer.js +103 -0
- package/dist/runtime/installer.js.map +1 -0
- package/dist/runtime/registry-client.d.ts +14 -0
- package/dist/runtime/registry-client.d.ts.map +1 -0
- package/dist/runtime/registry-client.js +42 -0
- package/dist/runtime/registry-client.js.map +1 -0
- package/dist/runtime/registry.d.ts +17 -0
- package/dist/runtime/registry.d.ts.map +1 -0
- package/dist/runtime/registry.js +225 -0
- package/dist/runtime/registry.js.map +1 -0
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@contractspec/module.examples",
|
|
3
|
+
"version": "0.0.0-canary-20260113170453",
|
|
4
|
+
"description": "Example contract specifications collection",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"contractspec",
|
|
7
|
+
"examples",
|
|
8
|
+
"starter",
|
|
9
|
+
"templates",
|
|
10
|
+
"typescript"
|
|
11
|
+
],
|
|
12
|
+
"type": "module",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
20
|
+
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
21
|
+
"build": "bun build:types && bun build:bundle",
|
|
22
|
+
"build:bundle": "tsdown",
|
|
23
|
+
"build:types": "tsc --noEmit",
|
|
24
|
+
"dev": "bun build:bundle --watch",
|
|
25
|
+
"clean": "rimraf dist .turbo",
|
|
26
|
+
"lint": "bun lint:fix",
|
|
27
|
+
"lint:fix": "eslint src --fix",
|
|
28
|
+
"lint:check": "eslint src",
|
|
29
|
+
"test": "bun test"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@apollo/client": "^4.0.12",
|
|
33
|
+
"@contractspec/example.agent-console": "0.0.0-canary-20260113170453",
|
|
34
|
+
"@contractspec/example.ai-support-bot": "0.0.0-canary-20260113170453",
|
|
35
|
+
"@contractspec/example.analytics-dashboard": "0.0.0-canary-20260113170453",
|
|
36
|
+
"@contractspec/example.content-generation": "0.0.0-canary-20260113170453",
|
|
37
|
+
"@contractspec/example.crm-pipeline": "0.0.0-canary-20260113170453",
|
|
38
|
+
"@contractspec/example.integration-hub": "0.0.0-canary-20260113170453",
|
|
39
|
+
"@contractspec/example.integration-stripe": "0.0.0-canary-20260113170453",
|
|
40
|
+
"@contractspec/example.kb-update-pipeline": "0.0.0-canary-20260113170453",
|
|
41
|
+
"@contractspec/example.knowledge-canon": "0.0.0-canary-20260113170453",
|
|
42
|
+
"@contractspec/example.learning-journey-ambient-coach": "0.0.0-canary-20260113170453",
|
|
43
|
+
"@contractspec/example.learning-journey-crm-onboarding": "0.0.0-canary-20260113170453",
|
|
44
|
+
"@contractspec/example.learning-journey-duo-drills": "0.0.0-canary-20260113170453",
|
|
45
|
+
"@contractspec/example.learning-journey-platform-tour": "0.0.0-canary-20260113170453",
|
|
46
|
+
"@contractspec/example.learning-journey-quest-challenges": "0.0.0-canary-20260113170453",
|
|
47
|
+
"@contractspec/example.learning-journey-registry": "0.0.0-canary-20260113170453",
|
|
48
|
+
"@contractspec/example.learning-journey-studio-onboarding": "0.0.0-canary-20260113170453",
|
|
49
|
+
"@contractspec/example.learning-journey-ui-coaching": "0.0.0-canary-20260113170453",
|
|
50
|
+
"@contractspec/example.learning-journey-ui-gamified": "0.0.0-canary-20260113170453",
|
|
51
|
+
"@contractspec/example.learning-journey-ui-onboarding": "0.0.0-canary-20260113170453",
|
|
52
|
+
"@contractspec/example.learning-journey-ui-shared": "0.0.0-canary-20260113170453",
|
|
53
|
+
"@contractspec/example.learning-patterns": "0.0.0-canary-20260113170453",
|
|
54
|
+
"@contractspec/example.lifecycle-cli": "0.0.0-canary-20260113170453",
|
|
55
|
+
"@contractspec/example.lifecycle-dashboard": "0.0.0-canary-20260113170453",
|
|
56
|
+
"@contractspec/example.locale-jurisdiction-gate": "0.0.0-canary-20260113170453",
|
|
57
|
+
"@contractspec/example.marketplace": "0.0.0-canary-20260113170453",
|
|
58
|
+
"@contractspec/example.openbanking-powens": "0.0.0-canary-20260113170453",
|
|
59
|
+
"@contractspec/example.personalization": "0.0.0-canary-20260113170453",
|
|
60
|
+
"@contractspec/example.policy-safe-knowledge-assistant": "0.0.0-canary-20260113170453",
|
|
61
|
+
"@contractspec/example.saas-boilerplate": "0.0.0-canary-20260113170453",
|
|
62
|
+
"@contractspec/example.service-business-os": "0.0.0-canary-20260113170453",
|
|
63
|
+
"@contractspec/example.team-hub": "0.0.0-canary-20260113170453",
|
|
64
|
+
"@contractspec/example.versioned-knowledge-base": "0.0.0-canary-20260113170453",
|
|
65
|
+
"@contractspec/example.wealth-snapshot": "0.0.0-canary-20260113170453",
|
|
66
|
+
"@contractspec/example.workflow-system": "0.0.0-canary-20260113170453",
|
|
67
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260113170453",
|
|
68
|
+
"@contractspec/lib.example-shared-ui": "0.0.0-canary-20260113170453",
|
|
69
|
+
"@contractspec/lib.runtime-sandbox": "0.0.0-canary-20260113170453",
|
|
70
|
+
"zod": "^4.3.5"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@contractspec/tool.tsdown": "0.0.0-canary-20260113170453",
|
|
74
|
+
"@contractspec/tool.typescript": "0.0.0-canary-20260113170453",
|
|
75
|
+
"tsdown": "^0.19.0",
|
|
76
|
+
"typescript": "^5.9.3"
|
|
77
|
+
},
|
|
78
|
+
"exports": {
|
|
79
|
+
".": "./dist/index.js",
|
|
80
|
+
"./*": "./*"
|
|
81
|
+
},
|
|
82
|
+
"publishConfig": {
|
|
83
|
+
"access": "public",
|
|
84
|
+
"exports": {
|
|
85
|
+
".": "./dist/index.js",
|
|
86
|
+
"./*": "./*"
|
|
87
|
+
},
|
|
88
|
+
"registry": "https://registry.npmjs.org/"
|
|
89
|
+
},
|
|
90
|
+
"license": "MIT",
|
|
91
|
+
"repository": {
|
|
92
|
+
"type": "git",
|
|
93
|
+
"url": "https://github.com/lssm-tech/contractspec.git",
|
|
94
|
+
"directory": "packages/modules/contractspec-examples"
|
|
95
|
+
},
|
|
96
|
+
"homepage": "https://contractspec.io"
|
|
97
|
+
}
|