-
Notifications
You must be signed in to change notification settings - Fork 651
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
{
"name": "@metamask/snaps-sandbox",
"version": "1.0.1",
"description": "A sandbox tool for interacting with MetaMask Snaps",
"keywords": [
"MetaMask",
"Snaps",
"Ethereum"
],
"homepage": "https://github.com/MetaMask/snaps/tree/main/packages/snaps-sandbox#readme",
"bugs": {
"url": "https://github.com/MetaMask/snaps/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"license": "ISC",
"sideEffects": false,
"type": "module",
"exports": {
"./dist/index.html": {
"default": "./dist/index.html"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/snaps-sandbox",
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn changelog:validate && yarn lint:dependencies",
"lint:ci": "yarn lint",
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"start": "vite",
"test": "vitest --silent passed-only",
"test:verbose": "vitest",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@chakra-ui/react": "^3.15.0",
"@emotion/react": "^11.14.0",
"@metamask/auto-changelog": "^6.1.0",
"@metamask/providers": "^22.1.1",
"@metamask/utils": "^11.11.0",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-query": "^5.71.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.1",
"depcheck": "^1.4.7",
"eslint": "^9.11.0",
"fast-deep-equal": "^3.1.3",
"happy-dom": "^20.0.11",
"jotai": "^2.12.2",
"monaco-editor": "patch:monaco-editor@npm%3A0.52.2#~/.yarn/patches/monaco-editor-npm-0.52.2-584d16bfa6.patch",
"nanoid": "^3.3.10",
"prettier": "^3.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"typescript": "~5.3.3",
"vite": "^6.4.1",
"vitest": "^3.1.1"
},
"engines": {
"node": "^20 || >=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}