2014-07-29 21:29:10 +02:00
{
2015-01-26 23:24:50 +00:00
"name" : "yjs" ,
2023-04-18 20:09:59 +02:00
"version" : "13.5.53" ,
2019-04-27 03:35:44 +02:00
"description" : "Shared Editing Library" ,
2020-01-13 14:54:07 +01:00
"main" : "./dist/yjs.cjs" ,
2020-02-12 10:37:22 +01:00
"module" : "./dist/yjs.mjs" ,
2020-01-23 21:45:56 +01:00
"types" : "./dist/src/index.d.ts" ,
2021-11-06 15:55:59 +01:00
"type" : "module" ,
2018-11-25 22:39:30 +01:00
"sideEffects" : false ,
2020-05-31 23:24:35 +02:00
"funding" : {
"type" : "GitHub Sponsors ❤" ,
"url" : "https://github.com/sponsors/dmonad"
} ,
2014-07-29 21:29:10 +02:00
"scripts" : {
2021-02-28 16:09:54 +01:00
"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" ,
2020-01-23 21:45:56 +01:00
"dist" : "rm -rf dist && rollup -c && tsc" ,
2018-11-25 03:17:00 +01:00
"watch" : "rollup -wc" ,
2019-09-04 13:05:03 +02:00
"lint" : "markdownlint README.md && standard && tsc" ,
"docs" : "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true" ,
2020-01-13 14:54:07 +01:00
"serve-docs" : "npm run docs && http-server ./docs/" ,
2021-02-28 16:09:54 +01:00
"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" ,
2020-01-13 14:54:07 +01:00
"debug" : "concurrently 'http-server -o test.html' 'npm run watch'" ,
2020-01-13 07:47:43 +01:00
"trace-deopt" : "clear && rollup -c && node --trace-deopt dist/test.cjs" ,
2022-02-03 21:11:40 +01:00
"trace-opt" : "clear && rollup -c && node --trace-opt dist/test.cjs"
2014-07-29 21:29:10 +02:00
} ,
2021-02-20 21:55:01 +01:00
"exports" : {
"." : {
2022-05-17 21:18:04 +09:00
"types" : "./dist/src/index.d.ts" ,
2023-01-01 18:23:21 +01:00
"module" : "./dist/yjs.mjs" ,
2021-02-20 21:55:01 +01:00
"import" : "./dist/yjs.mjs" ,
"require" : "./dist/yjs.cjs"
} ,
"./src/index.js" : "./src/index.js" ,
2021-03-21 15:31:17 +01:00
"./tests/testHelper.js" : "./tests/testHelper.js" ,
2021-11-06 15:55:59 +01:00
"./testHelper" : "./dist/testHelper.mjs" ,
2021-03-15 15:08:19 +01:00
"./package.json" : "./package.json"
2021-02-20 21:55:01 +01:00
} ,
2017-07-05 17:01:21 +02:00
"files" : [
2021-01-10 15:13:19 +01:00
"dist/yjs.*" ,
"dist/src" ,
2021-02-02 15:50:22 +01:00
"src" ,
"tests/testHelper.js" ,
2021-11-09 16:51:54 +01:00
"dist/testHelper.mjs" ,
2021-01-10 12:31:01 +01:00
"sponsor-y.js"
2015-06-16 14:36:00 +02:00
] ,
2018-11-25 22:39:30 +01:00
"dictionaries" : {
2019-03-01 23:26:40 +01:00
"test" : "tests"
2018-11-09 01:49:43 +01:00
} ,
2015-07-21 17:14:03 +02:00
"standard" : {
"ignore" : [
2019-03-01 23:26:40 +01:00
"/dist" ,
2018-11-25 03:17:00 +01:00
"/node_modules" ,
2019-05-22 17:32:51 +02:00
"/docs"
2015-07-21 17:14:03 +02:00
]
} ,
2014-07-29 21:29:10 +02:00
"repository" : {
"type" : "git" ,
2019-09-04 13:05:03 +02:00
"url" : "https://github.com/yjs/yjs.git"
2014-07-29 21:29:10 +02:00
} ,
"keywords" : [
2020-01-19 00:43:23 +01:00
"Yjs" ,
"CRDT" ,
"offline" ,
2021-05-14 18:53:24 +02:00
"offline-first" ,
"shared-editing" ,
2020-01-19 00:43:23 +01:00
"concurrency" ,
"collaboration"
2014-07-29 21:29:10 +02:00
] ,
"author" : "Kevin Jahns" ,
2019-09-04 13:05:03 +02:00
"email" : "kevin.jahns@protonmail.com" ,
2014-08-09 00:31:30 +02:00
"license" : "MIT" ,
2014-07-29 21:29:10 +02:00
"bugs" : {
2019-09-04 13:05:03 +02:00
"url" : "https://github.com/yjs/yjs/issues"
2014-08-12 19:13:42 +02:00
} ,
2021-01-10 12:27:37 +01:00
"homepage" : "https://docs.yjs.dev" ,
2019-03-13 01:49:51 +01:00
"dependencies" : {
2023-04-22 18:38:12 +02:00
"lib0" : "^0.2.74"
2019-03-13 01:49:51 +01:00
} ,
2014-07-29 21:29:10 +02:00
"devDependencies" : {
2023-03-21 11:14:37 +01:00
"@rollup/plugin-commonjs" : "^24.0.1" ,
"@rollup/plugin-node-resolve" : "^15.0.1" ,
"@types/node" : "^18.15.5" ,
2018-10-29 21:58:21 +01:00
"concurrently" : "^3.6.1" ,
2020-06-02 23:44:13 +02:00
"http-server" : "^0.12.3" ,
2021-10-14 16:19:24 +02:00
"jsdoc" : "^3.6.7" ,
2020-07-12 18:25:45 +02:00
"markdownlint-cli" : "^0.23.2" ,
2023-03-21 11:14:37 +01:00
"rollup" : "^3.20.0" ,
2021-10-14 16:18:50 +02:00
"standard" : "^16.0.4" ,
2019-03-13 01:49:51 +01:00
"tui-jsdoc-template" : "^1.2.2" ,
2023-03-21 11:14:37 +01:00
"typescript" : "^4.9.5" ,
2021-10-14 16:19:24 +02:00
"y-protocols" : "^1.0.5"
2023-03-21 11:27:37 +01:00
} ,
2023-03-22 11:05:23 +01:00
"engines" : {
"npm" : ">=8.0.0" ,
"node" : ">=16.0.0"
2019-03-13 00:22:38 +01:00
}
2014-07-29 21:29:10 +02:00
}