-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.43 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
{
"name": "@comapeo/core-react",
"version": "2.0.1",
"description": "React wrapper for working with @comapeo/core",
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/comapeo-core-react.git"
},
"keywords": [
"comapeo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/digidem/comapeo-core-react/issues"
},
"homepage": "https://github.com/digidem/comapeo-core-react#readme",
"authors": [
"Andrew Chou <[email protected]>"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"files": [
"dist/",
"docs/API.md"
],
"tshy": {
"project": "./tsconfig.build.json",
"selfLink": false,
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
},
"scripts": {
"prepare:husky": "husky",
"prepare:tshy": "tshy",
"prepare": "npm-run-all --parallel prepare:*",
"lint:eslint": "eslint --cache .",
"lint:format": "prettier --cache --check .",
"lint": "npm-run-all --parallel --continue-on-error --print-label --aggregate-output lint:*",
"types": "tsc",
"test": "vitest run",
"docs:generate": "tsdoc --src=src/contexts/*,src/hooks/* --dest=docs/API.md --noemoji --types"
},
"peerDependencies": {
"@comapeo/core": "*",
"@comapeo/ipc": "*",
"@comapeo/schema": "*",
"@tanstack/react-query": "^5",
"react": "^18 || ^19"
},
"devDependencies": {
"@comapeo/core": "2.3.0",
"@comapeo/schema": "1.3.0",
"@eslint/compat": "1.2.5",
"@eslint/js": "9.18.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@mapeo/crypto": "1.0.0-alpha.10",
"@tanstack/eslint-plugin-query": "5.64.2",
"@tanstack/react-query": "5.64.2",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.2.0",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"eslint": "9.18.0",
"fastify": "4.29.0",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"random-access-memory": "6.2.1",
"react": "19.0.0",
"tsdoc-markdown": "1.1.1",
"tshy": "3.0.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0",
"vitest": "3.0.3"
}
}