-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.21 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mutative-yjs",
"description": "A library for building Yjs collaborative web applications with Mutative",
"version": "0.2.1",
"type": "module",
"author": "unadlib",
"repository": {
"type": "git",
"url": "https://github.com/mutativejs/mutative-yjs.git"
},
"source": "./src/index.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.umd.js",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"test": "vitest run",
"clean": "rimraf dist",
"build": "yarn clean && tsc --skipLibCheck && yarn build:prod",
"build:prod": "NODE_ENV=production rollup --config --bundleConfigAsCjs",
"build:doc": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"commit": "yarn git-cz"
},
"keywords": [
"yjs",
"mutative",
"crdt"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^24.6.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "^4.3.0",
"eslint": "^9.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^27.0.0",
"mutative": "^1.3.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.52.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"yjs": "^13.6.27"
},
"peerDependencies": {
"mutative": ">=1.0.0",
"yjs": ">=13.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}