-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 890 Bytes
/
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
{
"name": "react-detect-print",
"version": "0.1.2",
"description": "Detect printing status in a react.js application.",
"main": "index.js",
"types": "./index.d.ts",
"author": "Drew Goodwin <drew@drewgoodwin.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacomanator/react-detect-print.git"
},
"lint-staged": {
"*.jsx": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build": "npx babel index.jsx -o index.js",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}