Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/database/package.json
Views: 687
{1"name": "@cocalc/database",2"version": "0.35.8",3"description": "CoCalc: code for working with our PostgreSQL database",4"exports": {5".": "./dist/index.js",6"./accounts/*": "./dist/accounts/*.js",7"./pool": "./dist/pool/index.js",8"./pool/*": "./dist/pool/*.js",9"./postgres/*": "./dist/postgres/*.js",10"./postgres/schema": "./dist/postgres/schema/index.js",11"./postgres/schema/*": "./dist/postgres/schema/*.js",12"./postgres/stripe": "./dist/postgres/stripe/index.js",13"./projects/*": "./dist/projects/*.js",14"./settings": "./dist/settings/index.js",15"./settings/*": "./dist/settings/*.js",16"./user-query": "./dist/user-query/index.js"17},18"dependencies": {19"@cocalc/backend": "workspace:*",20"@cocalc/database": "workspace:*",21"@cocalc/util": "workspace:*",22"@types/lodash": "^4.14.202",23"@types/pg": "^8.6.1",24"@types/uuid": "^8.3.1",25"async": "^1.5.2",26"awaiting": "^3.0.0",27"better-sqlite3": "^8.3.0",28"debug": "^4.3.2",29"immutable": "^4.3.0",30"json-stable-stringify": "^1.0.1",31"lodash": "^4.17.21",32"lru-cache": "^7.18.3",33"node-fetch": "2.6.7",34"pg": "^8.7.1",35"random-key": "^0.3.2",36"read": "^1.0.7",37"sql-string-escape": "^1.1.6",38"uuid": "^8.3.2",39"validator": "^13.6.0"40},41"devDependencies": {42"@types/node": "^18.16.14",43"coffeescript": "^2.5.1"44},45"scripts": {46"preinstall": "npx only-allow pnpm",47"build": "../node_modules/.bin/tsc --build && coffee -c -o dist/ ./",48"clean": "rm -rf dist",49"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",50"test": "pnpm exec jest",51"prepublishOnly": "pnpm test"52},53"repository": {54"type": "git",55"url": "https://github.com/sagemathinc/cocalc"56},57"homepage": "https://github.com/sagemathinc/cocalc",58"keywords": [59"postgresql",60"cocalc"61],62"author": "SageMath, Inc.",63"license": "SEE LICENSE.md",64"bugs": {65"url": "https://github.com/sagemathinc/cocalc/issues"66}67}686970