-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 KB
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
58
59
60
61
{
"name": "@pulsekit/react",
"version": "1.2.1",
"description": "React Server Components for the PulseKit analytics dashboard",
"keywords": ["analytics", "react", "dashboard", "supabase", "recharts", "pulsekit"],
"license": "MIT",
"author": "Benoit Ortalo-Magne",
"repository": {
"type": "git",
"url": "https://github.com/benoiteom/pulsekit.git",
"directory": "packages/react"
},
"homepage": "https://github.com/benoiteom/pulsekit/tree/main/packages/react",
"bugs": "https://github.com/benoiteom/pulsekit/issues",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./pulse.css": "./dist/pulse.css"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm run build",
"postbuild": "cp src/pulse.css dist/pulse.css",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint src/"
},
"dependencies": {
"@pulsekit/core": "workspace:*",
"react-day-picker": "^9.0.0",
"d3-geo": "^3.1.0",
"topojson-client": "^3.1.0",
"recharts": "^2.15.0"
},
"devDependencies": {
"@supabase/supabase-js": "^2.49.0",
"@types/react": "^19.0.0",
"@types/d3-geo": "^3.0.0",
"@types/topojson-client": "^3.0.0",
"@types/topojson-specification": "^1.0.0",
"next": "^15.0.0",
"react": "^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@supabase/supabase-js": ">=2.0.0",
"next": ">=14.0.0",
"react": ">=18.0.0"
}
}