-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
61 lines (61 loc) · 2.19 KB
/
package.json
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
{
"name": "@metamask/snap-simple-keyring",
"version": "1.1.6",
"private": true,
"description": "A simple keyring snap that integrates with MetaMask accounts.",
"keywords": [
"metamask",
"snap",
"keyring",
"account"
],
"homepage": "https://github.com/MetaMask/snap-simple-keyring#readme",
"bugs": {
"url": "https://github.com/MetaMask/snap-simple-keyring/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-simple-keyring.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --verbose --topological run build",
"build:dapp": "yarn workspace @metamask/snap-simple-keyring-site build",
"build:snap": "yarn workspace @metamask/snap-simple-keyring-snap build",
"lint": "yarn workspaces foreach --parallel --verbose run lint",
"lint:deps": "yarn workspaces foreach --parallel --verbose run depcheck",
"lint:eslint": "yarn workspaces foreach --parallel --verbose run lint:eslint",
"lint:fix": "yarn workspaces foreach --parallel --verbose run lint:fix",
"lint:misc": "yarn workspaces foreach --parallel --verbose run lint:misc",
"lint:types": "yarn workspaces foreach --parallel --verbose run lint:types",
"start": "yarn workspaces foreach --parallel --verbose --interlaced run start",
"test": "yarn workspaces foreach --parallel --verbose run test"
},
"devDependencies": {
"@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",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"depcheck": "^1.4.6",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.3",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}