forked from alchemyplatform/aa-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.7 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.7 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "root",
"type": "module",
"private": true,
"engines": {
"node": ">=18.16"
},
"packageManager": "yarn@1.22.22",
"workspaces": {
"packages": [
"aa-sdk/*",
"account-kit/*",
"templates/*",
"examples/*",
"account-kit/rn-signer/example",
"docs",
".vitest"
]
},
"resolutions": {
"axios": "1.12.0",
"wagmi": "2.12.7",
"viem": "2.33.3",
"zustand": "^5.0.0-rc.2",
"react-native": "0.76.5",
"react-native-config": "1.5.3",
"@react-native-community/cli": "15.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"@react-navigation/elements": "2.6.3",
"**/@react-navigation/elements": "2.6.3",
"@types/react": "18.3.22",
"@types/react-dom": "18.3.5"
},
"scripts": {
"generate": "turbo run generate",
"postgenerate": "yarn lint:write",
"preinstall": "yarn config set ignore-engines true",
"postinstall": "git submodule update --init --recursive && patch-package && turbo run build --filter='./templates/*'",
"build": "yarn build:libs --filter='!@account-kit/react-native-signer-example'",
"build:libs": "turbo run build --filter='@account-kit/*' --filter='@aa-sdk/*' --filter='./templates/*'",
"build:demo": "turbo run build --filter=ui-demo --filter='./templates/*'",
"build:examples": "turbo run build",
"clean": "yarn clean:turbo && yarn clean:node_modules",
"clean:turbo": "turbo run clean",
"clean:node_modules": "lerna clean -y && rm -rf node_modules",
"dev:ui": "turbo watch dev --filter='@account-kit/react' --filter=ui-demo",
"dev:docs": "turbo watch dev --filter=docs",
"test": "vitest dev",
"test:ci": "vitest run",
"test:typecheck": "TYPECHECK=true vitest --typecheck --typecheck.only run",
"lint:write": "eslint . --fix && prettier --loglevel warn --write --ignore-unknown .",
"lint:check": "eslint . && prettier --check .",
"lint:docs": "vale docs/**/*.mdx",
"prepare": "husky install && yarn turbo prepare",
"docs:dev": "./docs/scripts/docs-dev.sh",
"docs:broken-links": "lychee docs --root-dir /docs",
"docs:sdk": "yarn build && typedoc && tsx scripts/generate-typedoc-yaml.ts",
"version": "yarn build:libs"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/js-yaml": "^4.0.9",
"add": "^2.0.6",
"dotenv-cli": "^7.4.2",
"eslint": "^8.51.0",
"eslint-config-react-app": "^7.0.1",
"eslint-formatter-github": "1.1.4",
"eslint-formatter-rdjson": "^1.0.6",
"eslint-plugin-eslint-rules": "*",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-mdx": "^3.1.5",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"lerna": "^8.0.2",
"lint-staged": "^13.2.2",
"markdownlint": "^0.38.0",
"mdx2vast": "^0.3.0",
"node-fetch": "^3.3.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "3.3.3",
"prool": "^0.0.15",
"remark-mdx": "^3.1.1",
"tsx": "^4.20.5",
"turbo": "^2.2.3",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.8.1",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.8.3",
"viem": "^2.29.2",
"vitest": "^2.1.9",
"wagmi": "2.12.7",
"webauthn-p256": "^0.0.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "is-ci || lint-staged",
"commit-msg": "npx --no -- commitlint --edit ${1}"
}
},
"lint-staged": {
"**/*.{mdx,js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write"
]
}
}