-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.9 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
43
44
{
"type": "module",
"private": true,
"author": {
"name": "Declan Naughton",
"email": "[email protected]"
},
"license": "AGPL-3.0-only",
"scripts": {
"rollup-codemirror": "cd ./docs/graphing-calcs && rollup -c ./rollup.config.js",
"cul-compile-memo:shader": "npx cul-js compile --memo ./docs/graphing-calcs/cul/shader.cul.js && cp ./docs/graphing-calcs/cul/shader_esm/cul_scope_0.mjs ./docs/graphing-calcs/cul/shader_esm/cul_scope_0.js",
"cul-compile:shader": "npx cul-js compile ./docs/graphing-calcs/cul/shader.cul.js && cp ./docs/graphing-calcs/cul/shader_esm/cul_scope_0.mjs ./docs/graphing-calcs/cul/shader_esm/cul_scope_0.js",
"cul-compile:graphing-calcs": "npx cul-js compile ./docs/graphing-calcs/cul/calcs.cul.js && cp ./docs/graphing-calcs/cul/calcs_esm/cul_scope_0.mjs ./docs/graphing-calcs/cul/calcs_esm/cul_scope_0.js",
"cul-compile:flower": "npx cul-js compile ./docs/flower/cul/flower.cul.js && cp ./docs/flower/cul/flower_esm/cul_scope_0.mjs ./docs/flower/cul/flower_esm/cul_scope_0.js",
"clean": "rimraf docs/.observablehq/cache",
"build": "rimraf dist && observable build",
"dev": "observable preview",
"deploy": "observable deploy",
"observable": "observable"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@observablehq/framework": "latest",
"@replit/codemirror-indentation-markers": "^6.5.0",
"@replit/codemirror-interact": "^6.3.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"codemirror": "^6.0.1",
"codemirror-6-snippetbuilder": "^1.0.1",
"d3-dsv": "^3.0.1",
"d3-time-format": "^4.1.0",
"eslint-linter-browserify": "^8.56.0",
"rollup": "^4.12.0",
"underscore": "^1.13.6"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@calculang/calculang-js": "^0.1.0-alpha.6",
"@mdit/plugin-include": "^0.8.0",
"markdown-it-footnote": "^4.0.0"
}
}