-
-
Notifications
You must be signed in to change notification settings - Fork 409
/
package.json
81 lines (81 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-native-copilot",
"version": "3.3.2",
"description": "Make an interactive step by step tour guide for you react-native app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"private": false,
"scripts": {
"build": "tsup",
"dev": "NODE_ENV=development yarn build --watch",
"lint": "eslint src/ --ext .ts,.tsx",
"test": "jest",
"changeset": "changeset",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohebifar/react-native-copilot.git"
},
"keywords": [
"react-native",
"react-native-joyride",
"react",
"copilot",
"intro.js",
"intro"
],
"files": [
"dist"
],
"author": "Mohamad Mohebifar <mohamad@mohebifar.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohebifar/react-native-copilot/issues"
},
"homepage": "https://github.com/mohebifar/react-native-copilot#readme",
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
"@tsconfig/react-native": "^3.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "^0.73.5",
"react-native-svg": "^15.1.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "5.4.2"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"mitt": "^3.0.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-svg": ">=9.0.0"
},
"publishConfig": {
"access": "public"
}
}