@particle-network/ui-native 0.0.7 → 0.0.8
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/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-network/ui-native",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./entry.js",
|
|
6
6
|
"react-native": "./dist/index.js",
|
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js"
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"react-native": "./src/index.js",
|
|
14
|
+
"android": "./src/index.js",
|
|
15
|
+
"ios": "./src/index.js",
|
|
16
|
+
"default": "./src/index.js"
|
|
13
17
|
}
|
|
14
18
|
},
|
|
15
19
|
"scripts": {
|
|
@@ -23,10 +27,6 @@
|
|
|
23
27
|
"type-check": "npx tsc --noEmit -p ./tsconfig.json",
|
|
24
28
|
"build": "rslib build",
|
|
25
29
|
"build:watch": "rslib build --watch",
|
|
26
|
-
"publish": "./scripts/publish.sh",
|
|
27
|
-
"publish:patch": "npm version patch && yarn publish",
|
|
28
|
-
"publish:minor": "npm version minor && yarn publish",
|
|
29
|
-
"publish:major": "npm version major && yarn publish",
|
|
30
30
|
"lint": "eslint . --no-error-on-unmatched-pattern --quiet",
|
|
31
31
|
"lint:fix": "eslint . --fix --no-error-on-unmatched-pattern --quiet",
|
|
32
32
|
"clean": "rm -rf .turbo node_modules dist"
|