-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.23 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.23 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
{
"name": "@openzeppelin/relayer-sdk",
"version": "1.6.0",
"description": "OpenZeppelin Relayer SDK",
"license": "AGPL-3.0-or-later",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/OpenZeppelin/openzeppelin-relayer-sdk.git"
},
"scripts": {
"commit": "cz",
"clean:client": "rimraf ./src",
"clean:dist": "rimraf ./dist",
"generate:client": "pnpm clean:client && pnpm openapi-generator-cli generate -i ./openapi.json -g typescript-axios -o ./src -c ./config.json",
"generate:docs": "pnpm openapi-generator-cli generate -i ./openapi.json -g markdown -o docs",
"post:generate:client": "node scripts/post-generate.js",
"build:client": "pnpm clean:dist && tsc -p tsconfig.build.json && tsc -p tsconfig.build.esm.json",
"generate": "pnpm generate:client && pnpm post:generate:client && pnpm build:client && pnpm generate:docs",
"prepare": "husky",
"pre-commit": "lint-staged",
"lint": "prettier --check --write .",
"test": "nx run-many -t test --parallel=1 --output-style=static",
"publish:package": "node ./scripts/publish.js",
"install-pnpm": "npm install -g pnpm",
"install-deps": "pnpm install --frozen-lockfile --ignore-scripts --prefer-offline",
"build": "nx run-many -t build --parallel=1 --output-style=static",
"nx-build-skip-cache": "pnpm run build --skip-nx-cache",
"nx-build-test-skip-cache": "pnpm run build-test --skip-nx-cache",
"nx-test-skip-cache": "pnpm run test --skip-nx-cache",
"ci:version": "scripts/version.sh",
"lint:check": "eslint 'src/**/*.{js,ts}' --quiet",
"lint:fix": "pnpm prettier:fix && pnpm lint:check && pnpm prettier:check",
"prettier:check": "prettier -u --check '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"prettier:fix": "prettier -u --write '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"style": "pnpm lint:fix"
},
"keywords": [
"relayer",
"sdk",
"openzeppelin"
],
"author": "OpenZeppelin <contact@openzeppelin.com>",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"@changesets/pre": "^2.0.0",
"@changesets/read": "^0.6.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@openapitools/openapi-generator-cli": "^2.18.4",
"@solana-program/token": "^0.5.1",
"@solana-program/token-2022": "^0.4.2",
"@solana/addresses": "^2.3.0",
"@solana/kit": "^2.3.0",
"@types/node": "^22.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.22.0",
"@eslint/js": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"nx": "^20.6.0",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"semver": "^7.3.5",
"ts-node": "^10.9.2",
"typescript": "5.8.3",
"typescript-eslint": "8.44.1",
"undici": "^7.4.0"
},
"dependencies": {
"axios": "^1.7.7"
},
"engines": {
"node": ">=22.14.0",
"npm": "use pnpm",
"pnpm": ">=9",
"yarn": "use pnpm"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}