forked from onejs/one
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@vxrn/vite-native-swc",
"version": "1.1.294",
"types": "./types/index.d.ts",
"type": "module",
"main": "dist/cjs",
"module": "dist/esm",
"files": [
"src",
"types",
"dist"
],
"scripts": {
"build": "tamagui-build",
"watch": "tamagui-build --watch",
"lint": "../../node_modules/.bin/biome check src",
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
"clean": "tamagui-build clean",
"clean:build": "tamagui-build clean:build"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-destructuring": "^7.24.8",
"@babel/plugin-transform-private-methods": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/plugin-transform-regenerator": "^7.24.7",
"@swc/core": "^1.7.14",
"@vxrn/vite-native-client": "1.1.294",
"metro-react-native-babel-preset": "^0.77.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tamagui/build": "^1.112.21",
"react-native": "0.74.1"
},
"peerDependencies": {
"react-native": "*"
},
"publishConfig": {
"access": "public"
}
}