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/util/package.json
Views: 687
1
{
2
"name": "@cocalc/util",
3
"version": "1.77.2",
4
"description": "CoCalc code shared between the frontend and the backend",
5
"exports": {
6
"./*": "./dist/*.js",
7
"./db-schema": "./dist/db-schema/index.js",
8
"./fill": "./dist/fill/index.js",
9
"./types": "./dist/types/index.js",
10
"./consts": "./dist/consts/index.js",
11
"./i18n": "./dist/i18n/index.js",
12
"./sync/table": "./dist/sync/table/index.js",
13
"./sync/editor/db": "./dist/sync/editor/db/index.js",
14
"./licenses/purchase/*": "./dist/licenses/purchase/*.js",
15
"./redux/*": "./dist/redux/*.js"
16
},
17
"scripts": {
18
"preinstall": "npx only-allow pnpm",
19
"build": "pnpm exec tsc --build",
20
"tsc": "pnpm exec tsc --watch --pretty --preserveWatchOutput",
21
"test": "pnpm exec jest",
22
"prepublishOnly": "pnpm test"
23
},
24
"files": [
25
"dist/**",
26
"bin/**",
27
"README.md",
28
"package.json"
29
],
30
"author": "SageMath, Inc.",
31
"keywords": [
32
"utilities",
33
"mathjax",
34
"markdown",
35
"cocalc"
36
],
37
"license": "SEE LICENSE.md",
38
"dependencies": {
39
"@ant-design/colors": "^6.0.0",
40
"@cocalc/util": "workspace:*",
41
"@types/debug": "^4.1.12",
42
"async": "^1.5.2",
43
"awaiting": "^3.0.0",
44
"dayjs": "^1.11.11",
45
"debug": "^4.3.2",
46
"events": "3.3.0",
47
"get-random-values": "^1.2.0",
48
"immutable": "^4.3.0",
49
"js-base64": "^3.7.7",
50
"json-stable-stringify": "^1.0.1",
51
"jsonic": "^1.0.1",
52
"lodash": "^4.17.21",
53
"lru-cache": "^7.18.3",
54
"prop-types": "^15.7.2",
55
"react-intl": "^6.7.0",
56
"redux": "^4.2.1",
57
"reselect": "^4.1.8",
58
"sha1": "^1.1.1",
59
"underscore": "^1.12.1",
60
"utility-types": "^3.10.0",
61
"uuid": "^8.3.2",
62
"voucher-code-generator": "^1.3.0"
63
},
64
"repository": {
65
"type": "git",
66
"url": "https://github.com/sagemathinc/cocalc"
67
},
68
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/util",
69
"devDependencies": {
70
"@types/json-stable-stringify": "^1.0.32",
71
"@types/lodash": "^4.14.202",
72
"@types/node": "^18.16.14",
73
"@types/seedrandom": "^3.0.8",
74
"@types/uuid": "^8.3.1",
75
"coffee-cache": "^1.0.2",
76
"coffee-coverage": "^3.0.1",
77
"coffeescript": "^2.5.1",
78
"expect": "^26.6.2",
79
"nyc": "^15.1.0",
80
"seedrandom": "^3.0.5",
81
"should": "^7.1.1",
82
"should-sinon": "0.0.3",
83
"sinon": "^4.5.0",
84
"tsd": "^0.22.0"
85
}
86
}
87
88