-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "react-native-barcoder",
"version": "1.0.0",
"description": "a minimal react-native package for displaying a barcode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"peerDependencies": {
"react": "^18.3.1",
"react-native": "^0.75.3"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@types/react": "^18.2.75",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"dprint": "^0.47.2",
"eslint": "^9.10.0",
"expo": "^51.0.8",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.4"
},
"scripts": {
"dev": "expo start",
"lint": "run-p lint:*",
"lint:eslint": "eslint src",
"lint:tsc": "tsc --noEmit",
"format": "dprint fmt '**/*.{js,ts,tsx,json}'",
"format-check": "dprint check '**/*.{js,ts,tsx,json}'",
"build": "tsc --noEmit false && rm -r dist/barcodes && cp -r src/barcodes dist/barcodes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBlindHawk/react-native-barcoder.git"
},
"keywords": [
"react-native",
"jsbarcode",
"barcode",
"display",
"builder",
"code128",
"upc",
"ean",
"itf",
"msi",
"pharmacode"
],
"author": "TheBlindHawk",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bugs": {
"url": "https://github.com/TheBlindHawk/react-native-barcoder/issues"
},
"homepage": "https://github.com/TheBlindHawk/react-native-barcoder#readme"
}