-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (58 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (58 loc) · 1.87 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
{
"name": "native-liblouis",
"version": "0.2.1",
"description": "Native Module for running a native version of the Liblouis braille translator",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"tables:sync": "bash scripts/sync-liblouis-tables.sh",
"tables:sync:noweb": "bash scripts/sync-liblouis-tables.sh --skip-web",
"rebuild-native": "bash scripts/build-all.sh",
"tables:add": "node ./scripts/tables.mjs add",
"tables:remove": "node ./scripts/tables.mjs remove",
"tables:list": "node ./scripts/tables.mjs list",
"tables:clear": "node ./scripts/tables.mjs clear",
"build": "tsc && copyfiles -u 1 \"src/liblouis-web/*.*\" build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare && copyfiles -u 1 \"src/liblouis-web/*.*\" build",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"native-liblouis",
"NativeLiblouisModule"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hen1227/native-liblouis.git"
},
"bugs": {
"url": "https://github.com/hen1227/native-liblouis/issues"
},
"author": "Henry Abrahamsen <henhen1227@gmail.com> (https://github.com/hen1227)",
"license": "LGPL-2.1-or-later",
"homepage": "https://github.com/hen1227/native-liblouis#readme",
"devDependencies": {
"@types/react": "~19.0.0",
"copyfiles": "^2.4.1",
"expo": "~53.0.0",
"expo-module-scripts": "^4.1.9",
"react-native": "0.79.1"
},
"peerDependencies": {
"expo": "*",
"react": ">=18 || >=19",
"react-native": ">=0.73 || >=0.79"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
}
}