-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.69 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
{
"name": "solana-wallet-snap-monorepo",
"version": "1.33.0",
"private": true,
"description": "",
"homepage": "https://github.com/MetaMask/snap-solana-wallet#readme",
"bugs": {
"url": "https://github.com/MetaMask/snap-solana-wallet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-solana-wallet.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --topological --verbose run build",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"prepare": "husky",
"prettier:check": "prettier --check 'packages/**/*.{ts,json,js,tsx}'",
"prettier:fix": "prettier --write 'packages/**/*.{ts,json,js,tsx}'",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "yarn workspace @metamask/solana-wallet-snap run test --detectOpenHandles",
"test:watch": "yarn workspace @metamask/solana-wallet-snap run test:watch"
},
"lint-staged": {
"*": [
"yarn prettier:fix",
"yarn lint:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@lavamoat/allow-scripts": "^3.3.0",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@metamask/utils": "^10.0.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.2.11",
"sharp": "^0.33.5",
"typescript": "^5.6.3"
},
"packageManager": "yarn@3.8.6",
"engines": {
"node": ">=20.17.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"sharp": true,
"@commitlint/cli>@commitlint/load>ts-node>@swc/core": false
}
}
}