opendevtool 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +135 -0
  2. package/dist/open.js +32422 -0
  3. package/package.json +59 -0
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "opendevtool",
3
+ "version": "0.5.0",
4
+ "description": "Visual transaction debugger and CU profiler for Solana — turn any signature into a fully decoded execution profile. Installs as `opendev`.",
5
+ "bin": {
6
+ "opendev": "dist/open.js"
7
+ },
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup bin/open.ts",
14
+ "prepare": "npm run build",
15
+ "prepublishOnly": "npm run build",
16
+ "test": "echo \"Error: no test specified\" && exit 1",
17
+ "dev:cli": "tsx bin/open.ts"
18
+ },
19
+ "keywords": [
20
+ "solana",
21
+ "cli",
22
+ "debugger",
23
+ "transaction",
24
+ "profiler",
25
+ "compute-units",
26
+ "cu",
27
+ "observability",
28
+ "blockchain",
29
+ "web3"
30
+ ],
31
+ "author": "OPEN team",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/OpenSubmissionn/Open_DevTool.git",
36
+ "directory": "cli"
37
+ },
38
+ "homepage": "https://github.com/OpenSubmissionn/Open_DevTool#readme",
39
+ "bugs": {
40
+ "url": "https://github.com/OpenSubmissionn/Open_DevTool/issues"
41
+ },
42
+ "engines": {
43
+ "node": ">=20"
44
+ },
45
+ "type": "commonjs",
46
+ "devDependencies": {
47
+ "@types/dotenv": "^6.1.1",
48
+ "@types/node": "^20.11.19",
49
+ "tsup": "^8.0.2",
50
+ "tsx": "^4.7.1"
51
+ },
52
+ "dependencies": {
53
+ "@solana/web3.js": "^1.98.4",
54
+ "commander": "^11.1.0",
55
+ "dotenv": "^16.6.1",
56
+ "ora": "^5.4.1",
57
+ "string-width": "^4.2.3"
58
+ }
59
+ }