-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "react-adblock-checker",
"author": "christophe bellec",
"version": "1.0.7",
"keywords": [
"react",
"typescript",
"adblock checker"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/christophe77/react-adblock-checker"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "yarn build",
"prepublishOnly": "yarn prettier && yarn lint",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\""
},
"devDependencies": {
"@types/babel__core": "^7.1.20",
"@types/babel__generator": "^7.6.4",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"files": [
"/dist",
"LICENSE",
"README.md"
]
}