-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 KB
/
package.json
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
{
"name": "react-qr-code",
"version": "2.0.15",
"description": "A QR code generator for React and React Native.",
"keywords": [
"code",
"generator",
"qr",
"react",
"react-native"
],
"author": {
"name": "Ross Khanas",
"email": "[email protected]"
},
"scripts": {
"demo-web-watch": "babel ./src --out-dir=./demo/src/lib --watch",
"demo": "cd demo && npm run start",
"demo:build": "cd demo && npx expo export -p web",
"demo:deploy": "gh-pages -d demo/dist",
"clean": "rimraf lib",
"lint": "biome check --apply ./src",
"build": "npm run clean && babel src --out-dir lib",
"release": "release-it"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:rosskhanas/react-qr-code.git"
},
"files": [
"lib",
"types"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
"prop-types": "^15.8.1",
"qr.js": "0.0.0"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@release-it/conventional-changelog": "^8.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"gh-pages": "^6.1.1",
"release-it": "^17.3.0",
"rimraf": "^5.0.7"
}
}