-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "adblock-hunter",
"version": "1.0.1",
"description": "Detect adblock usage with ease",
"main": "dist/adblock-hunter.cjs.js",
"module": "dist/adblock-hunter.es5.js",
"browser": "dist/adblock-hunter.js",
"esnext": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "rollup -c && tsc -p tsconfig.esnext.json",
"start": "rollup -c -w",
"tsc": "tsc -p tsconfig.esnext.json"
},
"funding": {
"type": "individual",
"url": "https://ko-fi.com/andriir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blaumaus/adblock-hunter.git"
},
"author": "Andrii R. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blaumaus/adblock-hunter/issues"
},
"homepage": "https://github.com/Blaumaus/adblock-hunter",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
}
}