-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.29 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.29 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sequence-react-native",
"version": "0.1.0",
"description": "Sequence SDK for React Native - Beautiful onboarding flows for mobile apps",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"clean": "del-cli lib"
},
"keywords": [
"react-native",
"onboarding",
"sequence",
"mobile",
"sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/usesequence/sequence.git"
},
"author": "Sequence",
"license": "MIT",
"bugs": {
"url": "https://github.com/usesequence/sequence/issues"
},
"homepage": "https://github.com/usesequence/sequence#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/slider": "^5.1.1",
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.8",
"react": "^18.2.0",
"react-native": "^0.72.0",
"react-native-builder-bob": "^0.23.0",
"react-native-safe-area-context": "^5.6.2",
"react-native-svg": "^15.15.1",
"typescript": "^5.3.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"@react-native-async-storage/async-storage": ">=1.17.0",
"react-native-safe-area-context": ">=4.0.0",
"@react-native-community/slider": ">=4.0.0",
"react-native-svg": ">=13.0.0",
"react-native-linear-gradient": ">=2.6.0",
"expo-haptics": ">=12.0.0"
},
"peerDependenciesMeta": {
"@react-native-community/slider": {
"optional": true
},
"react-native-svg": {
"optional": true
},
"react-native-linear-gradient": {
"optional": true
},
"expo-haptics": {
"optional": true
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}