This repository was archived by the owner on Nov 27, 2025. It is now read-only.
forked from RepairShopr/react-native-signature-capture
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2 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
{
"name": "@react-native-oh-tpl/react-native-signature-capture",
"version": "0.4.12-rc.1",
"description": "Lets users sign their signatures",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "bob build",
"build": "npm run prepack && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/react-native-signature-capture.git"
},
"keywords": [
"react-component",
"react-native",
"harmonyos",
"signature"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.47"
},
"harmony": {
"alias": "react-native-signature-capture",
"codegenConfig": {
"specPaths": [
"./src"
]
}
},
"author": "RepairShopr",
"license": "ISC",
"bugs": {
"url": "https://github.com/RepairShopr/react-native-signature-capture/issues"
},
"homepage": "https://github.com/RepairShopr/react-native-signature-capture#readme",
"dependencies": {
"prop-types": "^15.5.10",
"react-native-signature-capture": "0.4.12"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-native-signature-capture": "^0.4.8",
"react": "18.2.0",
"react-native": "0.72.5",
"react-native-builder-bob": "^0.20.4",
"typescript": "4.8.2"
},
"publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" },
"files": [
"src",
"lib",
"harmony",
"README.md",
"LICENSE",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json",
"tsc": "./node_modules/.bin/tsc"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}