Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/package.json
5613 views
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
"clean": "rm -rf node_modules dist",
20
"build": "pnpm exec tsc --build",
21
"test": "pnpm exec jest",
22
"depcheck": "pnpx depcheck --ignores events",
23
"prepublishOnly": "pnpm test"
24
},
25
"files": [
26
"dist/**",
27
"bin/**",
28
"README.md",
29
"package.json"
30
],
31
"author": "SageMath, Inc.",
32
"keywords": [
33
"utilities",
34
"mathjax",
35
"markdown",
36
"cocalc"
37
],
38
"license": "SEE LICENSE.md",
39
"dependencies-COMMENT": "We must install react so that react-intl doesn't install the wrong version! See https://github.com/sagemathinc/cocalc/issues/8132",
40
"dependencies": {
41
"@ant-design/colors": "^6.0.0",
42
"@cocalc/diff-match-patch": "^1.0.0",
43
"@cocalc/util": "workspace:*",
44
"@isaacs/ttlcache": "^1.4.1",
45
"async": "^1.5.2",
46
"awaiting": "^3.0.0",
47
"dayjs": "^1.11.11",
48
"decimal.js-light": "^2.5.1",
49
"events": "3.3.0",
50
"immutable": "^4.3.0",
51
"js-base64": "^3.7.7",
52
"json-stable-stringify": "^1.0.1",
53
"jsonic": "^1.0.1",
54
"lodash": "^4.17.23",
55
"lru-cache": "^7.18.3",
56
"prop-types": "^15.7.2",
57
"react": "^19.1.1",
58
"react-intl": "^7.1.11",
59
"redux": "^4.2.1",
60
"request-ip": "^3.3.0",
61
"reselect": "^4.1.8",
62
"sha1": "^1.1.1",
63
"underscore": "^1.12.1",
64
"utility-types": "^3.10.0",
65
"uuid": "^8.3.2",
66
"voucher-code-generator": "^1.3.0"
67
},
68
"repository": {
69
"type": "git",
70
"url": "https://github.com/sagemathinc/cocalc"
71
},
72
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/util",
73
"devDependencies": {
74
"@types/json-stable-stringify": "^1.0.32",
75
"@types/lodash": "^4.14.202",
76
"@types/node": "^18.16.14",
77
"@types/seedrandom": "^3.0.8",
78
"@types/uuid": "^8.3.1",
79
"expect": "^26.6.2",
80
"seedrandom": "^3.0.5",
81
"tsd": "^0.22.0"
82
}
83
}
84
85