-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 3.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 3.16 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
{
"private": true,
"packageManager": "pnpm@10.11.1",
"type": "module",
"scripts": {
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types",
"build:cjs": "tsc --project ./tsconfig.cjs.json && printf '{\"type\":\"commonjs\"}' > ./src/_cjs/package.json",
"build:esm": "tsc --project ./tsconfig.esm.json && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./src/_esm/package.json",
"build:types": "tsc --project ./tsconfig.types.json",
"changeset": "changeset",
"changeset:version": "changeset version",
"check:auth-crypto-imports": "tsx scripts/check-auth-crypto-imports.ts",
"clean": "rm -rf src/_esm src/_cjs src/_types",
"docs": "typedoc --options ./typedoc.json",
"docs:md": "npm run docs:index && npm run docs:auth && npm run docs:evm && npm run docs:solana && npm run docs:policies && npm run docs:client",
"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",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\" && tsx scripts/sort-msw-index.ts",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"lint": "eslint -c .eslintrc.json \"src/**/*.ts\"",
"lint:fix": "eslint -c .eslintrc.json \"src/**/*.ts\" --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.\"; orval --config orval.config.ts",
"prepublish": "pnpm tsx scripts/prepublish.ts",
"test": "vitest --config=./vitest.config.ts run",
"test:coverage": "vitest --config=./vitest.config.ts run --coverage",
"test:e2e": "pnpm build && DISABLE_CDP_ERROR_REPORTING=true vitest --config=./vitest.e2e.config.ts run",
"test:e2e:watch": "vitest --config=./vitest.e2e.config.ts",
"test:watch": "vitest --config=./vitest.config.ts"
},
"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",
"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",
"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"
}
}
}