forked from iamkd/react-update-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "react-update-notification",
"version": "1.2.0",
"description": "New version notification for your React application.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build:cjs": "tsc",
"build:es": "tsc -m ESNext --outDir es --moduleResolution Node",
"build": "yarn clean && yarn build:cjs && yarn build:es",
"clean": "rimraf lib es",
"prettier": "prettier --write src/*.ts bin/*.js"
},
"bin": {
"generate-version": "bin/generate-version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/effeks/react-update-notification.git"
},
"author": "Danyil Karuna <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib",
"bin",
"es"
],
"peerDependencies": {
"react": "^16.12.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"yargs": "^17.7.2"
}
}