-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "polymarket-sdk",
"version": "0.0.0",
"description": "Polymarket SDK monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"build": "pnpm -r --sort --if-present run build",
"changeset": "changeset",
"clean": "rimraf packages/*/dist",
"dev:react": "pnpm --filter @polymarket/examples-react dev",
"release": "pnpm build && changeset publish --no-git-tag",
"release:canary": "changeset publish --tag canary --no-git-tag",
"test:bindings": "vitest --project bindings --passWithNoTests",
"test:client": "vitest --project client",
"test:client:integration": "vitest --project client-integration",
"test:types": "vitest --project types --passWithNoTests",
"test": "pnpm test:types && pnpm test:bindings && pnpm test:client",
"typecheck": "pnpm -r --sort --if-present run typecheck",
"version:bump": "changeset version",
"version:canary": "changeset version --snapshot canary",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.5.0",
"msw": "^2.11.5",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "4.1.2"
},
"packageManager": "pnpm@10.33.0"
}