-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "@hypercerts-org/sdk-react",
"version": "0.10.0-beta.10",
"description": "React hooks and components for the Hypercerts ATProto SDK",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/hypercerts-org/hypercerts-sdk.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run build && pnpm run test",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.mjs",
"require": "./dist/testing.cjs"
}
},
"scripts": {
"build": "rollup -c",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run build && pnpm run test",
"clean": "rm -rf dist"
},
"keywords": [
"atproto",
"hypercerts",
"sdk",
"react",
"hooks"
],
"author": "Hypercerts Foundation",
"license": "MIT",
"sideEffects": false,
"dependencies": {
"@hypercerts-org/sdk-core": "workspace:*"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@tanstack/react-query": "^5.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.0",
"jsdom": "^26.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0"
}
}