-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@basedash/embed",
"version": "0.1.0",
"description": "Typed helpers and React components for embedding Basedash",
"license": "MIT",
"author": "Basedash",
"homepage": "https://www.basedash.com/docs/features/embedding",
"repository": {
"type": "git",
"url": "git+https://github.com/Basedash/embed.git"
},
"bugs": {
"url": "https://github.com/Basedash/embed/issues"
},
"keywords": [
"basedash",
"analytics",
"embedding",
"iframe",
"react"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./server": {
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/server.d.cts",
"default": "./dist/server.cjs"
}
},
"./react": {
"import": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"require": {
"types": "./dist/react.d.cts",
"default": "./dist/react.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "tsup",
"check": "pnpm typecheck && pnpm test && pnpm build && publint && attw --pack . --profile node16",
"changeset": "changeset",
"dev": "tsup --watch",
"lint": "pnpm typecheck",
"prepublishOnly": "pnpm check",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"jose": "^6.2.10"
},
"peerDependencies": {
"react": ">=18.2.0 <20"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^3.0.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"jsdom": "^30.0.1",
"publint": "^0.3.24",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}