-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
124 lines (124 loc) · 3.02 KB
/
package.json
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "zustand-middleware-yjs",
"description": "Zustand middleware for syncing state with Yjs.",
"license": "MIT",
"keywords": [
"yjs",
"zustand",
"state-management",
"middleware",
"peer-to-peer",
"p2p",
"distributed",
"local-first",
"offline-first",
"crdt",
"decentralized",
"shared-editing",
"realtime"
],
"homepage": "https://github.com/joebobmiles/zustand-middleware-yjs",
"repository": {
"type": "git",
"url": "https://github.com/joebobmiles/zustand-middleware-yjs"
},
"bugs": {
"url": "https://github.com/joebobmiles/zustand-middleware-yjs/issues"
},
"author": {
"name": "Joseph R Miles",
"email": "joe@jrm.dev",
"url": "https://jrm.dev"
},
"main": "dist/yjs.cjs",
"module": "dist/yjs.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"require": "./dist/yjs.cjs",
"import": "./dist/yjs.mjs",
"types": "./dist/index.d.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"prepare": "husky install"
},
"dependencies": {
"yjs": "^13.5.11",
"zustand": "^4.3.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@joebobmiles/eslint-config-typescript": "^1.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.0",
"@types/ws": "^7.4.7",
"eslint": "^7.30.0",
"husky": "^7.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.53.1",
"semantic-release": "^21.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "^4.9.5",
"ws": "^7.5.3",
"y-websocket": "^1.3.16"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@joebobmiles/eslint-config-typescript",
"parserOptions": {
"tsconfigRootDir": ".",
"project": [
"./tsconfig.lint.json"
]
}
},
"release": {
"branches": [
"master",
{
"name": "staging",
"channel": "latest",
"prerelease": "rc"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"version": "1.3.1"
}