-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
53
54
55
56
57
{
"name": "@unifygtm/intent-react",
"version": "1.1.3",
"description": "Library for using the Unify Intent JS Client in a React app.",
"keywords": [
"unify",
"intent",
"client",
"react"
],
"homepage": "https://github.com/unifygtm/intent-react",
"bugs": "https://github.com/unifygtm/intent-react/issues",
"author": {
"name": "Solomon Astley",
"email": "[email protected]"
},
"license": "UNLICENSED",
"private": false,
"main": "./dist/js/index.cjs.js",
"module": "./dist/js/index.esm.js",
"types": "./src/index.d.ts",
"nodemonConfig": {
"watch": [
"./src/"
],
"ext": "ts,tsx,json"
},
"scripts": {
"build": "tsx src/build.ts"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/plugin-syntax-flow": "^7.24.6",
"@babel/plugin-transform-react-jsx": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@types/node": "^18.19.33",
"@types/react": "^18.3.3",
"babel-core": "^7.0.0-bridge.0",
"esbuild": "^0.17.19",
"prettier": "^3.2.5",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@unifygtm/intent-client": "^1.1.3"
},
"pnpm": {
"overrides": {
"node-fetch@<2.6.7": ">=2.6.7"
}
}
}