-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 991 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
37
38
{
"name": "react-use-facebook-pixel",
"version": "1.0.6",
"description": "Typed wrapper around Facebook Pixel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/geneloper/react-use-facebook-pixel.git"
},
"scripts": {
"build": "tsc && npm run minify",
"dev": "tsc --watch",
"minify": "terser dist/index.js --compress --mangle --output dist/index.min.js"
},
"keywords": [
"facebook",
"pixel",
"react",
"tracking",
"typescript",
"eventID"
],
"author": "Eugene Medvedev",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"terser": "^5.31.5",
"typescript": "^5.5.4"
}
}