forked from coinbase/cdp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.82 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
{
"private": true,
"packageManager": "pnpm@10.11.1",
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"check:auth-crypto-imports": "pnpm -r run check:auth-crypto-imports",
"clean": "pnpm -r run clean",
"docs": "typedoc --options ./typedoc.json",
"docs:md": "pnpm run docs:index && pnpm run docs:auth && pnpm run docs:evm && pnpm run docs:solana && pnpm run docs:policies && pnpm run docs:client && pnpm run docs:x402 && pnpm run docs:custodial",
"docs:index": "typedoc --options ./typedoc.index.json",
"docs:auth": "typedoc --options ./typedoc.auth.json",
"docs:evm": "typedoc --options ./typedoc.evm.json",
"docs:solana": "typedoc --options ./typedoc.solana.json",
"docs:policies": "typedoc --options ./typedoc.policies.json",
"docs:client": "typedoc --options ./typedoc.client.json",
"docs:x402": "typedoc --options ./typedoc.x402.json",
"docs:custodial": "typedoc --options ./typedoc.custodial.json && node ./flatten-custodial.mjs",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"orval": "make -C .. check-openapi || echo \" NOTE: THERE IS A NEW OPENAPI FILE AVAILABLE. RUN 'make update-openapi' IN THE ROOT DIRECTORY TO UPDATE IT.\"; python3 ../scripts/generate_public_operations.py ../openapi.yaml --language typescript && orval --config orval.config.ts",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"test:e2e": "pnpm -r run test:e2e",
"test:watch": "pnpm -r run test:watch"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.30.0",
"@faker-js/faker": "9.9.0",
"@types/md5": "2.3.6",
"@types/node": "20.19.37",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "1.6.1",
"@x402/core": "2.21.0",
"@x402/evm": "2.21.0",
"@x402/extensions": "2.21.0",
"@x402/fetch": "2.21.0",
"@x402/svm": "2.21.0",
"bs58": "6.0.0",
"dotenv": "16.6.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unused-imports": "4.4.1",
"msw": "2.12.10",
"orval": "7.21.0",
"ox": "0.14.29",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typedoc": "0.28.17",
"typedoc-plugin-frontmatter": "1.3.1",
"typedoc-plugin-markdown": "4.10.0",
"typescript": "5.9.3",
"uuid": "11.1.0",
"vitest": "1.6.1"
},
"pnpm": {
"patchedDependencies": {
"@orval/core@7.21.0": "patches/@orval__core@7.21.0.patch"
}
}
}