-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 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
{
"name": "@appgram/react-native",
"version": "0.1.0",
"description": "React Native SDK for Appgram - feature voting, roadmaps, changelogs, help center, support, and status pages",
"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": {
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"build": "bob build",
"prepare": "bob build",
"release": "npm publish",
"docs:json": "npx typedoc --json docs.json --entryPoints src/index.ts",
"docs:transform": "node transform-docs.js",
"docs:build": "npm run docs:json && npm run docs:transform"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.19.0",
"lucide-react-native": ">=0.300.0",
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"react-native-markdown-display": ">=7.0.0",
"react-native-render-html": ">=6.0.0",
"react-native-svg": ">=13.0.0"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@types/react": "^18.2.0",
"lucide-react-native": "^0.469.0",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-builder-bob": "^0.23.0",
"react-native-markdown-display": "^7.0.2",
"react-native-render-html": "^6.3.4",
"react-native-svg": "^15.8.0",
"typedoc": "^0.28.17",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AppGram/react-native"
},
"keywords": [
"react-native",
"appgram",
"feedback",
"roadmap",
"feature-requests",
"changelog",
"support",
"mobile"
],
"author": "Appgram",
"license": "MIT",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}