Files
yjs/package.json

91 lines
2.4 KiB
JSON
Raw Normal View History

{
"name": "@y/y",
2026-06-12 18:05:27 +02:00
"version": "14.0.0-rc.18",
2019-04-27 03:35:44 +02:00
"description": "Shared Editing Library",
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"
},
"scripts": {
2025-10-29 02:50:00 +01:00
"clean": "rm -rf dist",
"test": "NODE_ENV=development node ./tests/index.js --repetition-time 50",
"test-extensive": "node ./tests/index.js --production --repetition-time 10000",
2026-03-27 02:33:09 +01:00
"dist": "npm run clean && PRODUCTION=1 tsc --skipLibCheck --noEmit false && test -e dist/src/index.d.ts",
2026-03-27 01:29:21 +01:00
"lint": "markdownlint README.md && standard && tsc --skipLibCheck && npx dpdm --exit-code circular:1 --warning false --tree false src/index.js",
"debug": "npm run gentesthtml && 0serve -o test.html",
2026-01-10 00:57:43 +01:00
"debug:node": "node --inspect-brk tests/index.js",
"trace-deopt": "clear && node --trace-deopt ./tests/index.js",
"trace-opt": "clear && node --trace-opt ./tests/index.js",
"gentesthtml": "0gentesthtml --script ./tests/index.js --include-dependencies @y/protocols > test.html"
},
2021-02-20 21:55:01 +01:00
"exports": {
".": {
2022-05-17 21:18:04 +09:00
"types": "./dist/src/index.d.ts",
2026-01-10 00:57:43 +01:00
"default": "./src/index.js"
},
"./meta": {
2026-01-10 22:04:30 +01:00
"types": "./dist/src/utils/meta.d.ts",
"default": "./src/utils/meta.js"
},
"./testHelper": {
"types": "./dist/tests/testHelper.d.ts",
2026-01-10 00:57:43 +01:00
"default": "./tests/testHelper.js"
2021-02-20 21:55:01 +01:00
},
"./package.json": "./package.json"
2021-02-20 21:55:01 +01:00
},
2017-07-05 17:01:21 +02:00
"files": [
2026-01-12 01:39:24 +01:00
"src",
2026-03-28 16:42:09 +01:00
"dist/src",
2026-03-27 23:27:08 +01:00
"tests/testHelper.js",
"global.d.ts"
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"
},
2015-07-21 17:14:03 +02:00
"standard": {
"ignore": [
2019-03-01 23:26:40 +01:00
"/dist",
2025-10-29 02:50:00 +01:00
"/node_modules"
2015-07-21 17:14:03 +02:00
]
},
"repository": {
"type": "git",
2019-09-04 13:05:03 +02:00
"url": "https://github.com/yjs/yjs.git"
},
"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"
],
"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",
"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": {
2026-06-16 20:32:40 +02:00
"lib0": "^1.0.0-rc.15"
2019-03-13 01:49:51 +01:00
},
"devDependencies": {
"@types/node": "^22.14.1",
2026-02-25 16:16:46 +01:00
"@y/protocols": "^1.0.6-rc.1",
2026-03-27 01:29:21 +01:00
"@y/y": ".",
"dpdm": "^4.0.1",
2026-01-06 20:35:18 +01:00
"markdownlint": "^0.40.0",
2026-06-16 20:32:40 +02:00
"markdownlint-cli": "^0.43.0",
2025-10-28 17:51:10 +01:00
"standard": "^17.1.2",
2026-03-27 01:29:21 +01:00
"typescript": "^5.9.3"
2023-03-21 11:27:37 +01:00
},
2023-03-22 11:05:23 +01:00
"engines": {
"npm": ">=8.0.0",
2026-03-27 02:33:09 +01:00
"node": ">=22.0.0"
2019-03-13 00:22:38 +01:00
}
}