-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "@colabs-dev/name-resolver",
"version": "0.3.8",
"description": "Conft domain name resolver",
"repository": {
"type": "git",
"url": "https://github.com/Conft-dev/conft-snap"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "./dist/bundle.js",
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"build": "mm-snap build",
"build:clean": "yarn clean && yarn build",
"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' '**/*.yml' '!.yarnrc.yml' --ignore-path ../../.gitignore --no-error-on-unmatched-pattern",
"serve": "mm-snap serve",
"start": "mm-snap watch",
"test": "jest"
},
"dependencies": {
"@metamask/snaps-sdk": "~6.18.0",
"ethers": "5.7.2",
"webpack": "^5.99.7"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@metamask/snaps-cli": "^6.6.0",
"@metamask/snaps-jest": "^8.9.0",
"@types/react": "18.2.4",
"@types/react-dom": "18.2.4",
"eslint": "^9.11.0",
"jest": "^29.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "~5.7.3"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">=18.6.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}