Skip to content

Commit 5dd0f8a

Browse files
committed
Publishing edits
1 parent f9f5db2 commit 5dd0f8a

File tree

7 files changed

+217
-77
lines changed

7 files changed

+217
-77
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# TVM Viewer
1+
# TVM Viewer (beta)
22

33
Stack tracer for debugging smart contracts deployed on TON Blockchain.

index.html

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta
8-
name="description"
9-
content="TVM Viewer - see how tx was executed in TVM with stack."
10-
/>
11-
</head>
12-
<body>
13-
<div id="root"></div>
14-
<script type="module" src="/src/polyfills.ts"></script>
15-
<script type="module" src="/src/main.tsx"></script>
16-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>TVM Viewer</title>
6+
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<meta
9+
name="description"
10+
content="TVM Viewer - see how tx was executed in TVM with stack."
11+
/>
12+
</head>
13+
<body>
14+
<div id="root"></div>
15+
<script type="module" src="/src/polyfills.ts"></script>
16+
<script type="module" src="/src/main.tsx"></script>
17+
</body>
1718
</html>

package.json

Lines changed: 56 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,58 @@
11
{
2-
"name": "tvm-viewer",
3-
"private": true,
4-
"version": "0.0.1",
5-
"main": "dist/index.js",
6-
"files": [
7-
"dist/**/*"
8-
],
9-
"scripts": {
10-
"dev": "vite",
11-
"build": "tsc -b && vite build",
12-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
13-
"preview": "vite preview"
14-
},
15-
"dependencies": {
16-
"@chakra-ui/icons": "^2.1.1",
17-
"@chakra-ui/react": "^2.8.2",
18-
"@emotion/react": "^11.11.4",
19-
"@emotion/styled": "^11.11.5",
20-
"@orbs-network/ton-access": "^2.3.3",
21-
"@ton/core": "^0.56.3",
22-
"@ton/crypto": "3.2.0",
23-
"@ton/sandbox": "^0.20.0",
24-
"@ton/test-utils": "^0.3.1",
25-
"@ton/ton": "^13.11.0",
26-
"bigint-buffer": "^1.1.5",
27-
"buffer": "^6.0.3",
28-
"express": "^4.18.3",
29-
"framer-motion": "^11.3.2",
30-
"react": "^18.3.1",
31-
"react-dom": "^18.3.1",
32-
"vite-plugin-require": "^1.2.14"
33-
},
34-
"devDependencies": {
35-
"@types/express": "^4.17.21",
36-
"@types/jest": "^29.5.12",
37-
"@types/jsonwebtoken": "^9.0.6",
38-
"@types/node": "^18.15.11",
39-
"@types/react": "^18.3.3",
40-
"@types/react-dom": "^18.3.0",
41-
"@typescript-eslint/eslint-plugin": "^7.13.1",
42-
"@typescript-eslint/parser": "^7.13.1",
43-
"@vitejs/plugin-react": "^4.3.1",
44-
"eslint": "^8.57.0",
45-
"eslint-plugin-react-hooks": "^4.6.2",
46-
"eslint-plugin-react-refresh": "^0.4.7",
47-
"jest": "^29.7.0",
48-
"nodemon": "^3.1.0",
49-
"ts-jest": "^29.2.2",
50-
"ts-node": "^10.9.2",
51-
"typescript": "^5.4.2",
52-
"vite": "^5.3.1"
53-
}
2+
"name": "tvm-viewer",
3+
"private": true,
4+
"version": "0.0.1",
5+
"main": "dist/index.js",
6+
"files": [
7+
"dist/**/*"
8+
],
9+
"homepage": "https://1ixi1.github.io/tvm-viewer",
10+
"scripts": {
11+
"dev": "vite",
12+
"build": "tsc -b && vite build",
13+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
14+
"preview": "vite preview",
15+
"predeploy": "yarn build",
16+
"deploy": "gh-pages -d dist"
17+
},
18+
"dependencies": {
19+
"@chakra-ui/icons": "^2.1.1",
20+
"@chakra-ui/react": "^2.8.2",
21+
"@emotion/react": "^11.11.4",
22+
"@emotion/styled": "^11.11.5",
23+
"@orbs-network/ton-access": "^2.3.3",
24+
"@ton/core": "^0.56.3",
25+
"@ton/crypto": "3.2.0",
26+
"@ton/sandbox": "^0.20.0",
27+
"@ton/test-utils": "^0.3.1",
28+
"@ton/ton": "^13.11.0",
29+
"bigint-buffer": "^1.1.5",
30+
"buffer": "^6.0.3",
31+
"express": "^4.18.3",
32+
"framer-motion": "^11.3.2",
33+
"react": "^18.3.1",
34+
"react-dom": "^18.3.1",
35+
"vite-plugin-require": "^1.2.14"
36+
},
37+
"devDependencies": {
38+
"@types/express": "^4.17.21",
39+
"@types/jest": "^29.5.12",
40+
"@types/jsonwebtoken": "^9.0.6",
41+
"@types/node": "^18.15.11",
42+
"@types/react": "^18.3.3",
43+
"@types/react-dom": "^18.3.0",
44+
"@typescript-eslint/eslint-plugin": "^7.13.1",
45+
"@typescript-eslint/parser": "^7.13.1",
46+
"@vitejs/plugin-react": "^4.3.1",
47+
"eslint": "^8.57.0",
48+
"eslint-plugin-react-hooks": "^4.6.2",
49+
"eslint-plugin-react-refresh": "^0.4.7",
50+
"gh-pages": "^6.1.1",
51+
"jest": "^29.7.0",
52+
"nodemon": "^3.1.0",
53+
"ts-jest": "^29.2.2",
54+
"ts-node": "^10.9.2",
55+
"typescript": "^5.4.2",
56+
"vite": "^5.3.1"
57+
}
5458
}

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom/client';
3-
import App from './App.tsx';
4-
import "./index.css";
3+
import App from './App';
4+
import './index.css';
55

66
ReactDOM.createRoot(document.getElementById('root')!).render(
77
<React.StrictMode>

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import vitePluginRequire from 'vite-plugin-require';
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7+
base: process.env.GH_PAGES ? '/tvm-viewer/' : './',
78
plugins: [
89
react(),
910
vitePluginRequire({ fileRegex: /(.jsx?|.tsx?|.js?|.vue)$/ }),

0 commit comments

Comments
 (0)