-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "scriptvisualizer",
"version": "1.0.0",
"description": "Visualize the execution of BitcoinSV scripts as a stack of op_codes.",
"keywords": [
"Visualization",
"BitcoinSV",
"Scripts"
],
"license": "ISC",
"author": "Yinan Zhou",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@bsv/sdk": "^1.6.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.5.3",
"@uiw/react-json-view": "^2.0.0-alpha.32",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.0",
"@mui/system": "^5.15.0",
"axios": "^1.4.0"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"gh-pages": "^6.3.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"homepage": "https://yinandanielzhou.github.io/BSVScriptVisualizer/"
}