@vellira-ui/react-native 2.22.1 → 2.22.4
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 +14 -14
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vellira-ui/react-native",
|
|
3
|
-
"version": "2.22.
|
|
3
|
+
"version": "2.22.4",
|
|
4
4
|
"description": "React Native components for Vellira Design System",
|
|
5
5
|
"author": "Roman Bakurov",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/vellira-dev/vellira",
|
|
9
|
+
"url": "git+https://github.com/vellira-dev/vellira.git",
|
|
10
10
|
"directory": "packages/react-native"
|
|
11
11
|
},
|
|
12
12
|
"private": false,
|
|
@@ -29,16 +29,23 @@
|
|
|
29
29
|
"README.md",
|
|
30
30
|
"LICENSE"
|
|
31
31
|
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true })\"",
|
|
34
|
+
"build": "pnpm run clean && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
35
|
+
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
36
|
+
"test": "vitest run --config vitest.config.ts",
|
|
37
|
+
"test:coverage": "vitest run --config vitest.config.ts --coverage"
|
|
38
|
+
},
|
|
32
39
|
"peerDependencies": {
|
|
33
40
|
"@react-native-picker/picker": ">=2",
|
|
34
41
|
"react": ">=18",
|
|
35
42
|
"react-native": ">=0.81"
|
|
36
43
|
},
|
|
37
44
|
"dependencies": {
|
|
38
|
-
"@vellira-ui/
|
|
39
|
-
"@vellira-ui/
|
|
40
|
-
"@vellira-ui/
|
|
41
|
-
"@vellira-ui/
|
|
45
|
+
"@vellira-ui/core": "workspace:*",
|
|
46
|
+
"@vellira-ui/icons": "workspace:*",
|
|
47
|
+
"@vellira-ui/tokens": "workspace:*",
|
|
48
|
+
"@vellira-ui/types": "workspace:*"
|
|
42
49
|
},
|
|
43
50
|
"devDependencies": {
|
|
44
51
|
"@types/react": "^19.2.3",
|
|
@@ -51,12 +58,5 @@
|
|
|
51
58
|
},
|
|
52
59
|
"publishConfig": {
|
|
53
60
|
"access": "public"
|
|
54
|
-
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true })\"",
|
|
57
|
-
"build": "pnpm run clean && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
58
|
-
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
59
|
-
"test": "vitest run --config vitest.config.ts",
|
|
60
|
-
"test:coverage": "vitest run --config vitest.config.ts --coverage"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|