-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
110 lines (110 loc) · 2.67 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
{
"name": "@joebobmiles/y-react",
"version": "1.2.0",
"description": "React hooks for working with Yjs.",
"main": "./dist/y-react.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/y-react.mjs",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"prepare": "husky install"
},
"keywords": [
"react",
"hooks",
"yjs",
"state-management",
"peer-to-peer",
"p2p",
"distributed",
"local-first",
"offline-first",
"crdt",
"decentralized",
"shared-editing",
"realtime"
],
"author": "Joseph R Miles <joe@jrm.dev> (https://jrm.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joebobmiles/y-react"
},
"bugs": {
"url": "https://github.com/joebobmiles/y-react/issues"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"babel-jest": "^27.0.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"rollup": "^2.56.2",
"semantic-release": "^17.4.6",
"standard": "^16.0.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-standard": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"react": "^17.0.2",
"y-indexeddb": "^9.0.6",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.0",
"y-websocket": "^1.3.16",
"yjs": "^13.5.12"
},
"exports": {
"require": "./dist/y-react.cjs",
"import": "./dist/y-react.mjs"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"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}"
}
]
]
}
}