-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 KB
/
package.json
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
{
"type": "module",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"fixCMView": "sed -i -e 's/1e3\\/2/1e5\\/2/g' src/.observablehq/cache/_node/@codemirror/[email protected]/index.js",
"clean": "rimraf docs/.observablehq/cache",
"build": "npm run fixCMView && rimraf dist && observable build && sed -i '/crossorigin/d' ./dist/index.html && sed -i '/crossorigin/d' ./dist/index-original.html && cp ./preview.png ./dist",
"dev": "observable preview",
"deploy": "observable deploy",
"observable": "observable"
},
"dependencies": {
"@codemirror/autocomplete": "^6.16.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lint": "^6.7.1",
"@codemirror/merge": "6.6.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.30.0",
"@observablehq/framework": "latest",
"@observablehq/inspector": "^5.0.0",
"@observablehq/stdlib": "^5.8.7",
"@viz-js/viz": "^3.5.0",
"codemirror": "^6.0.1",
"codemirror-6-snippetbuilder": "^1.0.1",
"d3-dsv": "^3.0.1",
"d3-time-format": "^4.1.0",
"eslint-linter-browserify": "^9.2.0",
"globals": "^15.2.0",
"htl": "^0.3.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"@mdit/plugin-include": "^0.12.0",
"eslint": "^8.57.0",
"markdown-it": "^14.1.0",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=18"
}
}