Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
92 lines (92 sloc)
2.66 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "yjs", | |
"version": "13.5.39", | |
"description": "Shared Editing Library", | |
"main": "./dist/yjs.cjs", | |
"module": "./dist/yjs.mjs", | |
"types": "./dist/src/index.d.ts", | |
"type": "module", | |
"sideEffects": false, | |
"funding": { | |
"type": "GitHub Sponsors ❤", | |
"url": "https://github.com/sponsors/dmonad" | |
}, | |
"scripts": { | |
"test": "npm run dist && node ./dist/tests.cjs --repetition-time 50", | |
"test-extensive": "npm run lint && npm run dist && node ./dist/tests.cjs --production --repetition-time 10000", | |
"dist": "rm -rf dist && rollup -c && tsc", | |
"watch": "rollup -wc", | |
"lint": "markdownlint README.md && standard && tsc", | |
"docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true", | |
"serve-docs": "npm run docs && http-server ./docs/", | |
"preversion": "npm run lint && PRODUCTION=1 npm run dist && npm run docs && node ./dist/tests.cjs --repetition-time 1000 && test -e dist/src/index.d.ts && test -e dist/yjs.cjs && test -e dist/yjs.cjs", | |
"debug": "concurrently 'http-server -o test.html' 'npm run watch'", | |
"trace-deopt": "clear && rollup -c && node --trace-deopt dist/test.cjs", | |
"trace-opt": "clear && rollup -c && node --trace-opt dist/test.cjs" | |
}, | |
"exports": { | |
".": { | |
"types": "./dist/src/index.d.ts", | |
"import": "./dist/yjs.mjs", | |
"require": "./dist/yjs.cjs" | |
}, | |
"./src/index.js": "./src/index.js", | |
"./tests/testHelper.js": "./tests/testHelper.js", | |
"./testHelper": "./dist/testHelper.mjs", | |
"./package.json": "./package.json" | |
}, | |
"files": [ | |
"dist/yjs.*", | |
"dist/src", | |
"src", | |
"tests/testHelper.js", | |
"dist/testHelper.mjs", | |
"sponsor-y.js" | |
], | |
"dictionaries": { | |
"test": "tests" | |
}, | |
"standard": { | |
"ignore": [ | |
"/dist", | |
"/node_modules", | |
"/docs" | |
] | |
}, | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/yjs/yjs.git" | |
}, | |
"keywords": [ | |
"Yjs", | |
"CRDT", | |
"offline", | |
"offline-first", | |
"shared-editing", | |
"concurrency", | |
"collaboration" | |
], | |
"author": "Kevin Jahns", | |
"email": "kevin.jahns@protonmail.com", | |
"license": "MIT", | |
"bugs": { | |
"url": "https://github.com/yjs/yjs/issues" | |
}, | |
"homepage": "https://docs.yjs.dev", | |
"dependencies": { | |
"lib0": "^0.2.49" | |
}, | |
"devDependencies": { | |
"@rollup/plugin-commonjs": "^17.0.0", | |
"@rollup/plugin-node-resolve": "^11.2.1", | |
"concurrently": "^3.6.1", | |
"http-server": "^0.12.3", | |
"jsdoc": "^3.6.7", | |
"markdownlint-cli": "^0.23.2", | |
"rollup": "^2.60.0", | |
"standard": "^16.0.4", | |
"tui-jsdoc-template": "^1.2.2", | |
"typescript": "^4.4.4", | |
"y-protocols": "^1.0.5" | |
} | |
} |