-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.12 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
{
"name": "delegator-sdk-monorepo",
"version": "9.0.0",
"license": "(MIT-0 OR Apache-2.0)",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/metamask/delegation-toolkit.git"
},
"files": [],
"workspaces": [
"packages/*"
],
"scripts": {
"allow-scripts": "echo 'n/a'",
"build": "turbo build",
"build:packages": "turbo run build --filter='!./packages/delegator-e2e'",
"changelog:update": "turbo run changelog:update --filter='!./packages/delegator-e2e'",
"changelog:validate": "turbo run changelog:validate --filter='!./packages/delegator-e2e'",
"clean": "turbo clean",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate:abi": "cd ./shared/abi/scripts && ./generate-abi.sh",
"lint": "turbo lint",
"test": "turbo run test --filter='!./packages/delegator-e2e'",
"test:e2e": "turbo run test:e2e --filter='./packages/delegator-e2e'",
"test:standalone": "cd packages/delegator-e2e && yarn test:standalone",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@metamask/create-release-branch": "^4.1.1",
"@metamask/eslint-config": "^12.0.0",
"@metamask/eslint-config-nodejs": "^12.0.0",
"@metamask/eslint-config-typescript": "^12.0.0",
"@types/keccak": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@yarnpkg/types": "^4.0.1",
"abitype": "^1.0.2",
"buffer": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-turbo": "^1.11.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "latest",
"eslint-plugin-promise": "^6.1.1",
"keccak": "^3.0.4",
"nodemon": "^3.1.0",
"prettier": "^3.3.3",
"turbo": "latest",
"typescript": "5.0.4",
"viem": "2.31.4",
"webauthn-p256": "^0.0.10"
},
"packageManager": "yarn@4.2.2",
"engines": {
"node": "^18.18 || >=20"
},
"resolutions": {
"elliptic": "^6.6.1"
}
}