-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.52 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "recho-notebook",
"version": "0.2.0",
"description": "A free, open-source, reactive editor for algorithms and ASCII art. It introduces a plain code format for notebooks — echoing output inline as comments for live, in-situ coding with instant feedback.",
"author": "Recho",
"license": "ISC",
"homepage": "https://recho.dev/notebook",
"repository": {
"type": "git",
"url": "https://github.com/recho-dev/notebook.git"
},
"bugs": {
"url": "https://github.com/recho-dev/notebook/issues"
},
"keywords": [
"notebook",
"reactive",
"editor",
"javascript",
"observable",
"ascii-art",
"algorithms",
"live-coding",
"creative-coding",
"computational-art"
],
"type": "module",
"scripts": {
"dev": "vite --config test/playground/vite.config.js",
"app:dev": "next dev",
"app:build": "next build",
"app:start": "next start",
"test": "tsc --noEmit && npm run test:lint && npm run test:format && npm run test:js",
"test:js": "TZ=America/New_York vitest --config vite.config.js",
"test:format": "prettier --check editor runtime test app",
"test:lint": "eslint"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/friendly-words": "^1.2.2",
"@types/node": "24.10.1",
"@types/react": "19.2.6",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vercel/analytics": "^1.6.1",
"@vitejs/plugin-react": "^4.7.0",
"clsx": "^2.1.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.5.0",
"immutable": "^5.1.4",
"lucide-react": "^0.542.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"react-inspector": "^9.0.0",
"react-resizable-panels": "^3.0.6",
"react-tooltip": "^5.30.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "^7.3.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/language": "^6.12.1",
"@codemirror/language-data": "^6.5.2",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.3",
"@codemirror/view": "^6.39.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/spline-sans-mono": "^5.2.8",
"@lezer/highlight": "^1.2.3",
"@lezer/javascript": "^1.5.4",
"@observablehq/notebook-kit": "^1.5.0",
"@observablehq/runtime": "^6.0.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@uiw/codemirror-theme-github": "^4.25.4",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"codemirror": "^6.0.2",
"d3-array": "^3.2.4",
"d3-dispatch": "^3.0.1",
"d3-require": "^1.3.0",
"eslint-linter-browserify": "^9.39.2",
"friendly-words": "^1.3.1",
"jotai": "^2.16.1",
"nanoid": "^5.1.6",
"next": "^15.5.9",
"nstr": "^0.1.3",
"object-inspect": "^1.13.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"shiki": "^3.20.0",
"short-uuid": "^5.2.0",
"source-map-support": "^0.5.21",
"table": "^6.9.0",
"typebox": "^1.0.73"
}
}