Skip to content

Commit

Permalink
Publishing edits
Browse files Browse the repository at this point in the history
  • Loading branch information
1IxI1 committed Jul 15, 2024
1 parent f9f5db2 commit 5dd0f8a
Show file tree
Hide file tree
Showing 7 changed files with 217 additions and 77 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# TVM Viewer
# TVM Viewer (beta)

Stack tracer for debugging smart contracts deployed on TON Blockchain.
29 changes: 15 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="TVM Viewer - see how tx was executed in TVM with stack."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/polyfills.ts"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
<head>
<meta charset="UTF-8" />
<title>TVM Viewer</title>
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="TVM Viewer - see how tx was executed in TVM with stack."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/polyfills.ts"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
108 changes: 56 additions & 52 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,58 @@
{
"name": "tvm-viewer",
"private": true,
"version": "0.0.1",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@orbs-network/ton-access": "^2.3.3",
"@ton/core": "^0.56.3",
"@ton/crypto": "3.2.0",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.3.1",
"@ton/ton": "^13.11.0",
"bigint-buffer": "^1.1.5",
"buffer": "^6.0.3",
"express": "^4.18.3",
"framer-motion": "^11.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite-plugin-require": "^1.2.14"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^18.15.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vite": "^5.3.1"
}
"name": "tvm-viewer",
"private": true,
"version": "0.0.1",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"homepage": "https://1ixi1.github.io/tvm-viewer",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@orbs-network/ton-access": "^2.3.3",
"@ton/core": "^0.56.3",
"@ton/crypto": "3.2.0",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.3.1",
"@ton/ton": "^13.11.0",
"bigint-buffer": "^1.1.5",
"buffer": "^6.0.3",
"express": "^4.18.3",
"framer-motion": "^11.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite-plugin-require": "^1.2.14"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^18.15.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vite": "^5.3.1"
}
}
1 change: 0 additions & 1 deletion public/vite.svg

This file was deleted.

4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import "./index.css";
import App from './App';
import './index.css';

ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import vitePluginRequire from 'vite-plugin-require';

// https://vitejs.dev/config/
export default defineConfig({
base: process.env.GH_PAGES ? '/tvm-viewer/' : './',
plugins: [
react(),
vitePluginRequire({ fileRegex: /(.jsx?|.tsx?|.js?|.vue)$/ }),
Expand Down
Loading

0 comments on commit 5dd0f8a

Please sign in to comment.