-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "redux-yjs-bindings",
"description": "Use Yjs to sync your Redux store with other peers!",
"version": "0.3.1",
"type": "module",
"files": [
"dist",
"src"
],
"source": "src/index.ts",
"exports": {
"require": "./dist/bindings.cjs",
"default": "./dist/bindings.modern.js"
},
"main": "./dist/bindings.cjs",
"module": "./dist/bindings.module.js",
"unpkg": "./dist/bindings.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"coverage": "codecov",
"test": "jest --coverage",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lscheibel/redux-yjs-bindings.git"
},
"keywords": [
"shared-editing",
"yjs",
"state-management",
"redux",
"middleware"
],
"author": "Lennard Scheibel",
"license": "MIT",
"bugs": {
"url": "https://github.com/lscheibel/redux-yjs-bindings/issues"
},
"homepage": "https://github.com/lscheibel/redux-yjs-bindings#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"examples"
]
},
"dependencies": {
"recursive-diff": "^1.0.8",
"redux": "^4.1.2",
"yjs": "^13.5.28"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"fast-check": "^2.21.0",
"jest": "^27.4.7",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}