-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.84 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
{
"name": "@metamask/solana-wallet-snap",
"version": "1.32.0",
"description": "A Solana wallet Snap.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-solana-wallet.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "./dist/bundle.js",
"files": [
"dist/",
"snap.manifest.json",
"locales/"
],
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"build": "mm-snap build && yarn locale:build && yarn build-preinstalled-snap",
"build-preinstalled-snap": "node scripts/build-preinstalled-snap.js",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:misc && yarn lint:deps && yarn lint:types",
"lint:deps": "depcheck",
"lint:eslint": "eslint . --cache --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' --check",
"lint:types": "tsc --noEmit",
"locale:build": "node ./scripts/populate-locale.js",
"locale:build:watch": "npx nodemon --watch packages/snap/messages.json --exec \"node ./scripts/populate-locale.js\"",
"prepublishOnly": "mm-snap manifest",
"serve": "mm-snap serve",
"start": "node scripts/update-manifest-local.js && concurrently \"mm-snap watch\" \"yarn locale:build:watch\"",
"test": "jest --passWithNoTests --runInBand",
"test:core": "jest src/core --passWithNoTests",
"test:core:watch": "yarn test:core --watch",
"test:features": "jest src/features --passWithNoTests --runInBand",
"test:features:watch": "yarn test:features --watch",
"test:watch": "yarn test --watch"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@metamask/auto-changelog": "4.0.0",
"@metamask/key-tree": "9.1.2",
"@metamask/keyring-api": "^18.0.0",
"@metamask/keyring-snap-sdk": "^4.0.0",
"@metamask/snaps-cli": "^7.2.0",
"@metamask/snaps-jest": "8.12.0",
"@metamask/snaps-sdk": "^7.1.0",
"@metamask/superstruct": "^3.1.0",
"@metamask/utils": "11.4.0",
"@noble/ed25519": "2.1.0",
"@solana-program/compute-budget": "0.7.0",
"@solana-program/system": "0.7.0",
"@solana-program/token": "0.5.1",
"@solana/kit": "2.1.0",
"@testing-library/jest-dom": "^6.6.2",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.15",
"@types/react": "18.2.4",
"@types/react-dom": "18.2.4",
"bignumber.js": "^9.1.2",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"lodash": "^4.17.21",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.0"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">=18.6.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}