@rork-ai/toolkit-dev-sdk 0.2.10 → 0.2.12
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/README.md +1 -37
- package/package.json +20 -22
package/README.md
CHANGED
|
@@ -1,37 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
toolkit-sdk
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
```sh
|
|
9
|
-
npm install @rork-ai/toolkit-sdk
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
```js
|
|
17
|
-
import { multiply } from '@rork-ai/toolkit-sdk';
|
|
18
|
-
|
|
19
|
-
// ...
|
|
20
|
-
|
|
21
|
-
const result = await multiply(3, 7);
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## Contributing
|
|
26
|
-
|
|
27
|
-
- [Development workflow](CONTRIBUTING.md#development-workflow)
|
|
28
|
-
- [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
|
|
29
|
-
- [Code of conduct](CODE_OF_CONDUCT.md)
|
|
30
|
-
|
|
31
|
-
## License
|
|
32
|
-
|
|
33
|
-
MIT
|
|
34
|
-
|
|
35
|
-
---
|
|
36
|
-
|
|
37
|
-
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|
|
1
|
+
yo yo!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rork-ai/toolkit-dev-sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"author": "Levan Kvirkvelia <lekvirkvelia@gmail.com> (https://github.com/LevanKvirkvelia)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,24 +14,30 @@
|
|
|
14
14
|
"@react-native/babel-preset": "0.81.1",
|
|
15
15
|
"@react-native/eslint-config": "^0.81.1",
|
|
16
16
|
"@types/jest": "^29.5.14",
|
|
17
|
-
"@types/react": "
|
|
17
|
+
"@types/react": "19.1.11",
|
|
18
18
|
"eslint": "^9.35.0",
|
|
19
19
|
"eslint-config-prettier": "^10.1.8",
|
|
20
20
|
"eslint-plugin-prettier": "^5.5.4",
|
|
21
|
+
"expo": "54.0.8",
|
|
22
|
+
"expo-blur": "15.0.7",
|
|
23
|
+
"expo-modules-core": "3.0.18",
|
|
21
24
|
"jest": "^29.7.0",
|
|
22
|
-
"
|
|
25
|
+
"lucide-react-native": "0.544.0",
|
|
26
|
+
"prettier": "3.6.2",
|
|
23
27
|
"react": "19.1.0",
|
|
24
|
-
"react-native": "0.81.
|
|
28
|
+
"react-native": "0.81.4",
|
|
25
29
|
"react-native-builder-bob": "^0.40.13",
|
|
26
|
-
"
|
|
27
|
-
"typescript": "
|
|
30
|
+
"react-native-safe-area-context": "~5.6.1",
|
|
31
|
+
"typescript": "5.9.3"
|
|
28
32
|
},
|
|
29
33
|
"peerDependencies": {
|
|
30
|
-
"react-native": "*",
|
|
31
34
|
"expo": "*",
|
|
35
|
+
"expo-blur": "*",
|
|
32
36
|
"expo-modules-core": "*",
|
|
33
37
|
"lucide-react-native": "*",
|
|
34
|
-
"
|
|
38
|
+
"react-native": "*",
|
|
39
|
+
"react-native-safe-area-context": "*",
|
|
40
|
+
"expo-router": "*"
|
|
35
41
|
},
|
|
36
42
|
"exports": {
|
|
37
43
|
".": {
|
|
@@ -122,22 +128,14 @@
|
|
|
122
128
|
]
|
|
123
129
|
]
|
|
124
130
|
},
|
|
125
|
-
"
|
|
126
|
-
"npm": {
|
|
127
|
-
"publish": true
|
|
128
|
-
},
|
|
129
|
-
"github": {
|
|
130
|
-
"release": false
|
|
131
|
-
}
|
|
132
|
-
},
|
|
131
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
133
132
|
"scripts": {
|
|
134
133
|
"test": "jest",
|
|
135
134
|
"typecheck": "tsc",
|
|
136
135
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
137
136
|
"clean": "del-cli lib",
|
|
138
|
-
"
|
|
139
|
-
"release": "
|
|
140
|
-
"start": "cd example &&
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
}
|
|
137
|
+
"build": "bob build",
|
|
138
|
+
"release": "pnpm build && pnpm version patch && pnpm publish --no-git-checks",
|
|
139
|
+
"start": "cd example && pnpm start"
|
|
140
|
+
}
|
|
141
|
+
}
|