@rep-protocol/svelte 0.1.4 → 0.1.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.
- package/LICENSE +9 -0
- package/package.json +7 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Specification documents (spec/, schema/) are licensed under:
|
|
2
|
+
Creative Commons Attribution 4.0 International (CC BY 4.0)
|
|
3
|
+
https://creativecommons.org/licenses/by/4.0/
|
|
4
|
+
|
|
5
|
+
Reference implementations and tooling are licensed under:
|
|
6
|
+
Apache License, Version 2.0
|
|
7
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Copyright 2026 Ruach Tech
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rep-protocol/svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Svelte adapter for the Runtime Environment Protocol (REP).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
"url": "https://github.com/RuachTech/rep",
|
|
14
14
|
"directory": "adapters/svelte"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
18
|
-
"test": "vitest run"
|
|
19
|
-
},
|
|
20
16
|
"peerDependencies": {
|
|
21
17
|
"svelte": "^4.0.0 || ^5.0.0",
|
|
22
|
-
"@rep-protocol/sdk": "
|
|
18
|
+
"@rep-protocol/sdk": "0.1.5"
|
|
23
19
|
},
|
|
24
20
|
"devDependencies": {
|
|
25
21
|
"svelte": "^4.2.0",
|
|
26
22
|
"tsup": "^8.0.0",
|
|
27
23
|
"typescript": "^5.4.0",
|
|
28
24
|
"vitest": "^1.6.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
28
|
+
"test": "vitest run"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|