-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "@llamagen/llamagen-react-native",
"version": "0.1.0",
"description": "Official React Native library for the LlamaGen API, including comic api and animation api support.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "bob build",
"test": "jest --passWithNoTests",
"typescript": "tsc --noEmit"
},
"keywords": [
"llamagen",
"comic api",
"animation api",
"react-native",
"sdk"
],
"repository": "https://github.com/LlamaGenAI/llamagen-react-native",
"bugs": {
"url": "https://github.com/LlamaGenAI/llamagen-react-native/issues"
},
"homepage": "https://llamagen.ai/comic-api/resources/libraries",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native/babel-preset": "^0.74.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.74.0",
"react-native-builder-bob": "^0.30.3",
"typescript": "^5.5.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"configFile": true
}
],
[
"module",
{
"configFile": true
}
],
"typescript"
]
}
}