-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "solid-automerge",
"version": "1.1.0",
"description": "use automerge-repo in your solid app",
"type": "module",
"main": "out/index.js",
"types": "./out/index.d.ts",
"scripts": {
"prepublish": "pnpm mk",
"mk": "rm -rf ./out ./docs; node --experimental-strip-types ./mk.ts && typedoc",
"build": "pnpm mk",
"test": "vitest run"
},
"keywords": [
"solidjs",
"solid",
"solid-js",
"automerge",
"crdt",
"colaboration"
],
"author": "chee <chee@rabbits.computer>",
"license": "MIT",
"exports": {
".": {
"import": "./out/index.js"
}
},
"files": [
"out",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@automerge/automerge-repo": "^2.0.0",
"@onyx/esbuild-plugin-rewrite-relative-import-extensions": "npm:@jsr/onyx__esbuild-plugin-rewrite-relative-import-extensions@^0.0.2",
"@solidjs/testing-library": "^0.8.9",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"esbuild": "^0.25.4",
"esbuild-isolated-dts": "^0.1.2",
"eslint": "^9.11.0",
"eslint-plugin-solid": "^0.14.3",
"globals": "^15.9.0",
"jsdom": "^26.0.0",
"prettier": "^3.3.3",
"solid-js": "^1.9.4",
"typedoc": "^0.28.4",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.6.0",
"vite-plugin-solid": "^2.11.0",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^2.1.1"
},
"peerDependencies": {
"solid-js": "^1.9.4"
},
"dependencies": {
"@solid-primitives/utils": "^6.3.0",
"cabbages": "^0.2.8"
},
"repository": {
"type": "git",
"url": "https://github.com/chee/solid-automerge.git"
},
"homepage": "https://chee.github.io/solid-automerge/",
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b"
}