83 lines
2.4 KiB
JSON
83 lines
2.4 KiB
JSON
{
|
|
"name": "yjs",
|
|
"version": "13.4.9",
|
|
"description": "Shared Editing Library",
|
|
"main": "./dist/yjs.cjs",
|
|
"module": "./dist/yjs.mjs",
|
|
"unpkg": "./dist/yjs.mjs",
|
|
"types": "./dist/src/index.d.ts",
|
|
"sideEffects": false,
|
|
"funding": {
|
|
"type": "GitHub Sponsors ❤",
|
|
"url": "https://github.com/sponsors/dmonad"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run dist && node ./dist/tests.cjs --repitition-time 50",
|
|
"test-extensive": "npm run lint && npm run dist && node ./dist/tests.cjs --production --repitition-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 --repitition-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",
|
|
"postinstall": "node ./funding.cjs"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"src/*",
|
|
"tests/*",
|
|
"docs/*",
|
|
"funding.cjs"
|
|
],
|
|
"dictionaries": {
|
|
"doc": "docs",
|
|
"test": "tests"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"/dist",
|
|
"/node_modules",
|
|
"/docs"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/yjs/yjs.git"
|
|
},
|
|
"keywords": [
|
|
"Yjs",
|
|
"CRDT",
|
|
"offline",
|
|
"shared editing",
|
|
"concurrency",
|
|
"collaboration"
|
|
],
|
|
"author": "Kevin Jahns",
|
|
"email": "kevin.jahns@protonmail.com",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/yjs/yjs/issues"
|
|
},
|
|
"homepage": "https://yjs.dev",
|
|
"dependencies": {
|
|
"lib0": "^0.2.33"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
"concurrently": "^3.6.1",
|
|
"http-server": "^0.12.3",
|
|
"jsdoc": "^3.6.5",
|
|
"markdownlint-cli": "^0.23.2",
|
|
"rollup": "^1.32.1",
|
|
"rollup-cli": "^1.0.9",
|
|
"standard": "^14.3.4",
|
|
"tui-jsdoc-template": "^1.2.2",
|
|
"typescript": "^3.9.7",
|
|
"y-protocols": "^0.2.3"
|
|
}
|
|
}
|