-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.7 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
{
"name": "@nocturne-xyz/snap",
"version": "0.11.0",
"description": "Nocturne Snap",
"license": "(MIT-0 OR Apache-2.0)",
"main": "src/index.ts",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build": "mm-snap build",
"build:clean": "yarn clean && yarn build",
"build:local": "./scripts/build_local.sh",
"build:website": "node ./scripts/build-website.js",
"clean": "rimraf dist",
"cp-config": "cp ../config/configs/localhost.json ./src/config.json",
"dev": "yarn build && yarn build:local && yarn serve",
"link:monorepo": "yarn link -A -r ../monorepo",
"lint": "eslint --fix src --ext .ts",
"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",
"manifest:fix": "mm-snap manifest --fix",
"prettier:check": "prettier --check ./src",
"prettier:write": "prettier --write ./src",
"publish": "yarn build:clean && yarn npm publish --access public",
"serve": "mm-snap serve",
"start": "mm-snap watch",
"test:unit": "mocha --require ts-node/register test/** --timeout 45000 --exit",
"unlink:monorepo": "yarn unlink -A ../monorepo"
},
"dependencies": {
"@metamask/snaps-ui": "^0.32.2",
"@nocturne-xyz/client": "^4.0.0",
"@nocturne-xyz/config": "^1.7.1",
"@nocturne-xyz/core": "^3.1.4",
"@nocturne-xyz/crypto": "^0.4.1",
"bigint-json-serialization": "^1.0.1",
"buffer": "^6.0.3",
"superstruct": "^1.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@lavamoat/allow-scripts": "^2.0.3",
"@metamask/auto-changelog": "^2.6.0",
"@metamask/eslint-config": "^10.0.0",
"@metamask/eslint-config-nodejs": "^10.0.0",
"@metamask/eslint-config-typescript": "^10.0.0",
"@metamask/key-tree": "^6.0.0",
"@metamask/snaps-cli": "0.32.2",
"@metamask/snaps-types": "0.32.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"find-yarn-workspace-root": "^2.0.0",
"mocha": "^10.1.0",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.12.1"
}
}