-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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": "@baselime/react-rum",
"version": "0.3.1",
"description": "Optimise the real world performance of your react applications",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"dev": "npm link && tsup --watch --ignore-watch node_modules --ignore-watch example --ignore-watch .github & cd example && npm link @baselime/react-rum && npm run dev",
"prerelease": "npm run build",
"release": "release-it"
},
"tsup": {
"entry": [
"src/index.tsx"
],
"minify": true,
"dts": true,
"splitting": false,
"format": [
"cjs",
"esm"
],
"external": [
"react"
]
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/baselime/react-rum.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/baselime/react-rum/issues"
},
"homepage": "https://github.com/baselime/react-rum#readme",
"dependencies": {
"js-cookie": "^3.0.5",
"react-error-boundary": "^4.0.11",
"web-vitals": "^3.4.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^4.0.0",
"@types/js-cookie": "^3.0.4",
"@types/react": "^18.2.23",
"axios": "^1.6.0",
"release-it": "^16.1.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}