-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 933 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 933 Bytes
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
{
"name": "segmento-sdk",
"private": true,
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --if-present run dev",
"lint": "pnpm -r run lint",
"test": "pnpm -r --if-present run test",
"clean": "pnpm -r --if-present run clean",
"version": "pnpm changeset version",
"release": "pnpm build && pnpm changeset publish",
"example": "npx serve . --listen 3333 --no-clipboard",
"example:ui": "npx serve . --listen 3333 --no-clipboard --open example/ui-package/index.html",
"example:custom": "npx serve . --listen 3333 --no-clipboard --open example/custom-ui/index.html",
"example:mock-wallet": "npx serve . --listen 3333 --no-clipboard --open example/mock-wallet-events/index.html"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"lodash": "^4.18.1"
}
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"typescript": "^6.0.0"
}
}