@rool-dev/sdk 2.0.0-dev.69ff8af → 2.0.0-dev.b63c29d
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 +9 -1
- package/package.json +13 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Lightpost One
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -122,6 +122,14 @@ Long-running work belongs to the machine rather than the client connection. File
|
|
|
122
122
|
|
|
123
123
|
The package exports its public TypeScript types, so editor autocomplete shows the detailed options and results. See [docs.rool.dev](https://docs.rool.dev/sdk/) for the published documentation.
|
|
124
124
|
|
|
125
|
+
## Development
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
pnpm install
|
|
129
|
+
pnpm build
|
|
130
|
+
pnpm typecheck
|
|
131
|
+
```
|
|
132
|
+
|
|
125
133
|
## License
|
|
126
134
|
|
|
127
|
-
MIT — see [LICENSE](
|
|
135
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rool-dev/sdk",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.b63c29d",
|
|
4
4
|
"description": "TypeScript SDK for Rool Machines",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"type": "module",
|
|
@@ -28,7 +28,13 @@
|
|
|
28
28
|
"test": "node --import tsx --test test/*.test.ts",
|
|
29
29
|
"test:v2": "node --env-file=.env --import tsx test/integration/v2/run.ts",
|
|
30
30
|
"notebook": "pnpm build && ./scripts/notebook.sh",
|
|
31
|
-
"clean": "rm -rf dist"
|
|
31
|
+
"clean": "rm -rf dist",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"docs:prebuild": "node docs/build-docs.js",
|
|
34
|
+
"docs:dev": "pnpm run docs:prebuild && astro dev --root docs",
|
|
35
|
+
"docs:build": "pnpm run docs:prebuild && astro build --root docs",
|
|
36
|
+
"docs:preview": "astro preview --root docs",
|
|
37
|
+
"release": "node scripts/release.js"
|
|
32
38
|
},
|
|
33
39
|
"publishConfig": {
|
|
34
40
|
"access": "public"
|
|
@@ -36,8 +42,7 @@
|
|
|
36
42
|
"homepage": "https://docs.rool.dev/sdk/",
|
|
37
43
|
"repository": {
|
|
38
44
|
"type": "git",
|
|
39
|
-
"url": "git+https://github.com/rool-dev/rool-js.git"
|
|
40
|
-
"directory": "packages/sdk"
|
|
45
|
+
"url": "git+https://github.com/rool-dev/rool-js.git"
|
|
41
46
|
},
|
|
42
47
|
"keywords": [
|
|
43
48
|
"rool",
|
|
@@ -54,7 +59,11 @@
|
|
|
54
59
|
"open": "^11.0.0"
|
|
55
60
|
},
|
|
56
61
|
"devDependencies": {
|
|
62
|
+
"@astrojs/starlight": "^0.41.5",
|
|
57
63
|
"@types/node": "^25.6.0",
|
|
64
|
+
"astro": "^7.1.6",
|
|
65
|
+
"prettier": "^3.9.6",
|
|
66
|
+
"sharp": "^0.35.3",
|
|
58
67
|
"tslab": "^1.0.22",
|
|
59
68
|
"tsx": "^4.23.1",
|
|
60
69
|
"typescript": "^5.9.3"
|