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/assets/package.json
Views: 687
1
{
2
"name": "@cocalc/assets",
3
"version": "1.10.1",
4
"description": "The static assets (images, code, etc.) for the CoCalc frontend.",
5
"main": "index.js",
6
"workspaces": ["../backend"],
7
"directories": {
8
"example": "examples"
9
},
10
"scripts": {
11
"preinstall": "npx only-allow pnpm",
12
"build": "./build.sh",
13
"test": "../node_modules/.bin/jest",
14
"prepublishOnly": "pnpm test"
15
},
16
"keywords": ["cocalc"],
17
"author": "SageMath, Inc.",
18
"license": "SEE LICENSE.md",
19
"dependencies": {
20
"jquery": "^3.6.0",
21
"url-loader": "^4.1.1"
22
},
23
"devDependencies": {
24
"@cocalc/backend": "workspace:*",
25
"uglify-js": "^3.14.1"
26
},
27
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/assets",
28
"repository": {
29
"type": "git",
30
"url": "https://github.com/sagemathinc/cocalc"
31
}
32
}
33
34