CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/cdn/package.json
Views: 687
1
{
2
"name": "@cocalc/cdn",
3
"version": "1.15.1",
4
"description": "Files that CoCalc uses that would be natural in various contexts to get from a CDN",
5
"main": "dist/index.js",
6
"keywords": [
7
"cdn",
8
"cocalc"
9
],
10
"devDependencies": {
11
"codemirror": "^5.65.3",
12
"katex": "^0.16.10"
13
},
14
"scripts": {
15
"clean": "rm -rf build node_modules dist",
16
"build": "rm -rf build dist && mkdir build && cp -rv *.json *.py *.js build/ && cd build && npm ci && mkdir dist && ./setup.py && mv dist .. && cd .. && rm -rf build ",
17
"postinstall": "./postinstall.js",
18
"test": "../node_modules/.bin/jest",
19
"prepublishOnly": "npm test"
20
},
21
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/cdn",
22
"repository": {
23
"type": "git",
24
"url": "https://github.com/sagemathinc/cocalc"
25
},
26
"author": "SageMath, Inc.",
27
"license": "SEE LICENSE.md"
28
}
29
30