-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "y-solid",
"version": "0.1.5",
"description": "Solid provider for Yjs",
"main": "dist/bundle.js",
"types": "dist/SolidPersistence.d.ts",
"files": [
"dist"
],
"scripts": {
"build:dev": "webpack --mode=development --watch --progress",
"build:prod": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonnysCode/y-solid.git"
},
"keywords": [
"Yjs",
"Solid",
"CRDT",
"Private Data Pod",
"Offline-First",
"Local-Frist Applications"
],
"author": "Jonathan Gruss <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonnysCode/y-solid/issues"
},
"homepage": "https://github.com/JonnysCode/y-solid#readme",
"standard": {
"ignore": [
"/node_modules"
]
},
"dependencies": {
"@inrupt/solid-client": "^1.24.0",
"@inrupt/solid-client-authn-browser": "^1.12.3",
"@inrupt/vocab-common-rdf": "^1.0.5",
"lib0": "^0.2.52",
"yjs": "^13.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"yjs": "^13.0.0"
}
}