-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 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
{
"name": "@contentpass/react-native-contentpass-ui",
"version": "0.2.0",
"description": "Contentpass React Native UI Components",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"exports": {
".": {
"import": {
"types": "./lib/typescript/react-native-contentpass-ui/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/react-native-contentpass-ui/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
}
},
"types": "./lib/typescript/react-native-contentpass-ui/src/index.d.ts",
"files": [
"lib",
"!**/*.test.ts",
"!**/*.test.tsx",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest --coverage",
"typecheck": "tsc",
"prepare": "bob build"
},
"keywords": [
"contentpass",
"react-native",
"ui",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/contentpass/react-native-contentpass.git"
},
"author": "contentpass <dev@contentpass.de> (https://github.com/contentpass)",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentpass/react-native-contentpass/issues"
},
"homepage": "https://github.com/contentpass/react-native-contentpass#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"@contentpass/react-native-contentpass": "*",
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"devDependencies": {
"@contentpass/react-native-contentpass": "workspace:*",
"@react-native-community/cli": "19.1.2",
"@react-native/babel-preset": "0.81.5",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.10",
"jest": "^30.2.0",
"react": "19.2.4",
"react-native": "0.81.5",
"react-native-builder-bob": "^0.40.17",
"react-native-webview": "^13.15.0",
"react-test-renderer": "19.2.4",
"typescript": "^5.9.3"
},
"react-native-builder-bob": {
"source": "src",
"exclude": "**/{__tests__,__fixtures__,__mocks__}/**",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}