-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 3.09 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
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
{
"name": "stellar-snap",
"version": "1.0.6",
"description": "A non custodial Stellar Wallet for metamask",
"repository": {
"type": "git",
"url": "https://github.com/paulfears/StellarSnap.git"
},
"license": "MIT",
"main": "snap/index.tsx",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build": "cd site && yarn",
"build:clean": "yarn clean && yarn build",
"build:website": "node ./scripts/build-website.js",
"clean": "rimraf 'dist/*'",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"serve": "mm-snap serve",
"test": "mm-snap build && concurrently \"(mm-snap serve)\" \"http-server -p 3000 ./test\"",
"start": "npx mm-snap build && concurrently \"(npx mm-snap serve)\" \"npm install --prefix ./site/ && npm run --prefix ./site/ dev\""
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@lavamoat/allow-scripts": "^2.0.3",
"@metamask/approval-controller": "^7.1.0",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/base-controller": "^7.0.1",
"@metamask/browser-passworder": "^5.0.1",
"@metamask/eslint-config": "^8.0.0",
"@metamask/eslint-config-jest": "^14.0.0",
"@metamask/eslint-config-nodejs": "^8.0.0",
"@metamask/eslint-config-typescript": "^13.0.0",
"@metamask/object-multiplex": "^2.1.0",
"@metamask/permission-controller": "^11.0.2",
"@metamask/snap-types": "^0.23.0",
"@metamask/snaps-cli": "^6.5.0",
"@sveltejs/adapter-vercel": "^5.4.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"concurrently": "^8.2.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"http-server": "^14.1.1",
"prettier": "^2.3.2",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"serve": "^14.2.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@metamask/snaps-sdk": "^6.7.0",
"@metamask/snaps-types": "^3.1.0",
"@metamask/snaps-ui": "^3.1.0",
"@stellar/stellar-sdk": "^12.3.0",
"@stellarguard/txrep": "^2.0.0",
"buffer": "^6.0.3",
"crc": "^4.3.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"nacl": "^0.1.3",
"qrcode-svg": "^1.1.0",
"stellar-base": "10.0.0-beta.1",
"svelte-js-editor": "^0.0.1",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}