-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.54 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
51
52
53
54
55
56
57
{
"name": "@fintoc/fintoc-react-native",
"version": "1.0.2",
"repository": "https://github.com/fintoc-com/fintoc-react-native",
"license": "MIT",
"author": {
"name": "Daniel Leal",
"email": "[email protected]"
},
"main": "dist/main.umd.js",
"module": "dist/main.es.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"require": "./dist/main.umd.js",
"import": "./dist/main.es.js"
}
},
"files": [
"dist"
],
"scripts": {
"bump!": "sh scripts/bump.sh",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"lint": "eslint --ext .tx,.ts .",
"version:get": "node -p \"require('./package.json').version\"",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^17.0.33",
"@types/react-native": "^0.67.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.4",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-native": "^0.67.4",
"react-native-webview": "^11.17.2",
"typescript": "^4.5.4",
"vite": "^5.0.12",
"vitest": "^1.6.0"
}
}