-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.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
{
"name": "@cubist-labs/cubesigner-snap",
"version": "0.2.23",
"description": "CubeSigner Snap",
"repository": {
"type": "git",
"url": "https://github.com/cubist-labs/CubeSigner-Snap"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "Cubist Inc.",
"main": "src/index.ts",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"prebuild": "npm install",
"build": "mm-snap build",
"build:clean": "npm run clean && npm run build",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf dist",
"lint": "npm run lint:eslint && npm run lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "npm run lint:eslint --fix && npm run lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"serve": "mm-snap serve",
"start": "mm-snap watch",
"test": "jest --maxWorkers=1 --ci"
},
"dependencies": {
"@cubist-labs/cubesigner-sdk": "^0.1.26",
"@metamask/rpc-errors": "^5.1.1",
"@metamask/snaps-types": "^0.32.2",
"@metamask/snaps-ui": "^0.32.2",
"buffer": "^6.0.3"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^2.0.3",
"@metamask/auto-changelog": "^2.6.0",
"@metamask/eslint-config": "^10.0.0",
"@metamask/eslint-config-jest": "^10.0.0",
"@metamask/eslint-config-nodejs": "^10.0.0",
"@metamask/eslint-config-typescript": "^10.0.0",
"@metamask/snaps-cli": "^0.38.2-flask.1",
"@metamask/snaps-jest": "^0.37.3-flask.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"through2": "^4.0.2",
"ts-jest": "^29.1.0",
"typescript": "^4.7.4"
}
}