-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.94 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "solid-liveblocks",
"version": "0.1.11",
"description": "A set of Solid hooks and providers to use Liveblocks declaratively. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"author": "tmns",
"license": "MIT",
"type": "module",
"main": "./dist/cjs/production/index.jsx",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"release": "bumpp --commit --push --tag && npm publish",
"check:exports": "tsc scripts/check-factory-exports.ts && mv scripts/check-factory-exports.js scripts/cfe.cjs && node scripts/cfe.cjs",
"test": "jest --silent --verbose --color=always",
"test:watch": "jest --verbose --color=always --watch"
},
"dependencies": {
"@liveblocks/client": "^1.0.1",
"@liveblocks/core": "^1.0.1",
"solid-js": "^1.6.11"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@solidjs/testing-library": "^0.6.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.5.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.5.0",
"babel-preset-solid": "^1.6.16",
"bumpp": "^9.0.0",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.1.0",
"pridepack": "2.4.1",
"solid-jest": "^0.2.0",
"solid-js": "^1.6.11",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"whatwg-fetch": "^3.6.2"
},
"peerDependencies": {
"solid-js": "^1.5.3"
},
"sideEffects": false,
"repository": {
"url": "https://github.com/tmns/solid-liveblocks.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/tmns/solid-liveblocks/issues"
},
"homepage": "https://github.com/tmns/solid-liveblocks#readme",
"keywords": [
"solid",
"reactivity",
"liveblocks",
"real-time",
"toolkit",
"multiplayer",
"websockets",
"collaboration",
"collaborative",
"presence",
"crdts",
"synchronize",
"rooms",
"documents",
"conflict resolution"
],
"private": false,
"publishConfig": {
"access": "public"
},
"module": "./dist/esm/production/index.jsx",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.jsx",
"import": "./dist/esm/development/index.jsx"
},
"require": "./dist/cjs/production/index.jsx",
"import": "./dist/esm/production/index.jsx",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}