@railtownai/railtracks-visualizer 0.0.7 → 0.0.10
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.
- package/LICENSE +201 -201
- package/README.md +52 -52
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +93 -93
package/package.json
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@railtownai/railtracks-visualizer",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"license": "Apache-2.0",
|
|
5
|
-
"author": "Railtown AI",
|
|
6
|
-
"description": "A visualizer for RailTracks agentic flows",
|
|
7
|
-
"main": "dist/cjs/index.js",
|
|
8
|
-
"module": "dist/esm/index.js",
|
|
9
|
-
"types": "dist/types/src/index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"types": "./dist/types/src/index.d.ts",
|
|
13
|
-
"import": "./dist/esm/index.js",
|
|
14
|
-
"require": "./dist/cjs/index.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"LICENSE",
|
|
20
|
-
"README.md",
|
|
21
|
-
"package.json"
|
|
22
|
-
],
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/railtownai/railtracks-visualizer.git"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"agents",
|
|
29
|
-
"visualizer",
|
|
30
|
-
"railtracks",
|
|
31
|
-
"agentic-flow",
|
|
32
|
-
"react",
|
|
33
|
-
"typescript"
|
|
34
|
-
],
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"lucide-react": "0.525.0",
|
|
37
|
-
"react": "^18.2.0",
|
|
38
|
-
"react-dom": "^18.2.0",
|
|
39
|
-
"reactflow": "11.11.4"
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"start": "vite",
|
|
43
|
-
"dev": "vite",
|
|
44
|
-
"clean": "rm -rf dist build",
|
|
45
|
-
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
46
|
-
"lint:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
47
|
-
"build:spa": "vite build",
|
|
48
|
-
"build:lib": "rollup -c",
|
|
49
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
50
|
-
"build": "npm run clean && npm run build:types && npm run build:lib && npm run build:spa",
|
|
51
|
-
"publish:dry": "npm publish --dry-run",
|
|
52
|
-
"test": "vitest run",
|
|
53
|
-
"test:ui": "vitest --ui",
|
|
54
|
-
"up": "ncu -u -x react -x react-dom -x @types/react -x @types/react-dom && npm install"
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@babel/core": "7.28.0",
|
|
58
|
-
"@babel/preset-env": "7.28.0",
|
|
59
|
-
"@babel/preset-react": "7.27.1",
|
|
60
|
-
"@babel/preset-typescript": "7.27.1",
|
|
61
|
-
"@rollup/plugin-babel": "6.0.3",
|
|
62
|
-
"@rollup/plugin-commonjs": "25.0.2",
|
|
63
|
-
"@rollup/plugin-json": "6.0.0",
|
|
64
|
-
"@rollup/plugin-node-resolve": "15.1.0",
|
|
65
|
-
"@rollup/plugin-terser": "0.4.3",
|
|
66
|
-
"@rollup/plugin-typescript": "11.1.1",
|
|
67
|
-
"@testing-library/jest-dom": "6.6.3",
|
|
68
|
-
"@testing-library/react": "16.3.0",
|
|
69
|
-
"@types/node": "24.1.0",
|
|
70
|
-
"@types/react": "18.2.79",
|
|
71
|
-
"@types/react-dom": "18.2.25",
|
|
72
|
-
"@vitejs/plugin-react-swc": "3.10.2",
|
|
73
|
-
"jsdom": "26.1.0",
|
|
74
|
-
"npm-check-updates": "18.0.1",
|
|
75
|
-
"prettier": "3.6.2",
|
|
76
|
-
"rollup": "3.29.5",
|
|
77
|
-
"rollup-plugin-postcss": "4.0.2",
|
|
78
|
-
"tslib": "2.8.1",
|
|
79
|
-
"typescript": "5.8.3",
|
|
80
|
-
"vite": "7.0.5",
|
|
81
|
-
"vitest": "3.2.4"
|
|
82
|
-
},
|
|
83
|
-
"prettier": {
|
|
84
|
-
"singleQuote": false,
|
|
85
|
-
"trailingComma": "none",
|
|
86
|
-
"arrowParens": "always",
|
|
87
|
-
"printWidth": 120,
|
|
88
|
-
"tabWidth": 2,
|
|
89
|
-
"useTabs": false,
|
|
90
|
-
"semi": true,
|
|
91
|
-
"bracketSpacing": true
|
|
92
|
-
}
|
|
93
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@railtownai/railtracks-visualizer",
|
|
3
|
+
"version": "0.0.10",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"author": "Railtown AI",
|
|
6
|
+
"description": "A visualizer for RailTracks agentic flows",
|
|
7
|
+
"main": "dist/cjs/index.js",
|
|
8
|
+
"module": "dist/esm/index.js",
|
|
9
|
+
"types": "dist/types/src/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/types/src/index.d.ts",
|
|
13
|
+
"import": "./dist/esm/index.js",
|
|
14
|
+
"require": "./dist/cjs/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"README.md",
|
|
21
|
+
"package.json"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/railtownai/railtracks-visualizer.git"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"agents",
|
|
29
|
+
"visualizer",
|
|
30
|
+
"railtracks",
|
|
31
|
+
"agentic-flow",
|
|
32
|
+
"react",
|
|
33
|
+
"typescript"
|
|
34
|
+
],
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"lucide-react": "0.525.0",
|
|
37
|
+
"react": "^18.2.0",
|
|
38
|
+
"react-dom": "^18.2.0",
|
|
39
|
+
"reactflow": "11.11.4"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"start": "vite",
|
|
43
|
+
"dev": "vite",
|
|
44
|
+
"clean": "rm -rf dist build",
|
|
45
|
+
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
46
|
+
"lint:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
47
|
+
"build:spa": "vite build",
|
|
48
|
+
"build:lib": "rollup -c",
|
|
49
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
50
|
+
"build": "npm run clean && npm run build:types && npm run build:lib && npm run build:spa",
|
|
51
|
+
"publish:dry": "npm publish --dry-run",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"test:ui": "vitest --ui",
|
|
54
|
+
"up": "ncu -u -x react -x react-dom -x @types/react -x @types/react-dom && npm install"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@babel/core": "7.28.0",
|
|
58
|
+
"@babel/preset-env": "7.28.0",
|
|
59
|
+
"@babel/preset-react": "7.27.1",
|
|
60
|
+
"@babel/preset-typescript": "7.27.1",
|
|
61
|
+
"@rollup/plugin-babel": "6.0.3",
|
|
62
|
+
"@rollup/plugin-commonjs": "25.0.2",
|
|
63
|
+
"@rollup/plugin-json": "6.0.0",
|
|
64
|
+
"@rollup/plugin-node-resolve": "15.1.0",
|
|
65
|
+
"@rollup/plugin-terser": "0.4.3",
|
|
66
|
+
"@rollup/plugin-typescript": "11.1.1",
|
|
67
|
+
"@testing-library/jest-dom": "6.6.3",
|
|
68
|
+
"@testing-library/react": "16.3.0",
|
|
69
|
+
"@types/node": "24.1.0",
|
|
70
|
+
"@types/react": "18.2.79",
|
|
71
|
+
"@types/react-dom": "18.2.25",
|
|
72
|
+
"@vitejs/plugin-react-swc": "3.10.2",
|
|
73
|
+
"jsdom": "26.1.0",
|
|
74
|
+
"npm-check-updates": "18.0.1",
|
|
75
|
+
"prettier": "3.6.2",
|
|
76
|
+
"rollup": "3.29.5",
|
|
77
|
+
"rollup-plugin-postcss": "4.0.2",
|
|
78
|
+
"tslib": "2.8.1",
|
|
79
|
+
"typescript": "5.8.3",
|
|
80
|
+
"vite": "7.0.5",
|
|
81
|
+
"vitest": "3.2.4"
|
|
82
|
+
},
|
|
83
|
+
"prettier": {
|
|
84
|
+
"singleQuote": false,
|
|
85
|
+
"trailingComma": "none",
|
|
86
|
+
"arrowParens": "always",
|
|
87
|
+
"printWidth": 120,
|
|
88
|
+
"tabWidth": 2,
|
|
89
|
+
"useTabs": false,
|
|
90
|
+
"semi": true,
|
|
91
|
+
"bracketSpacing": true
|
|
92
|
+
}
|
|
93
|
+
}
|