-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.42 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.42 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
{
"name": "react-utterances-client",
"version": "1.3.0",
"description": "Another React component for using Utterances 🔮 on your website!",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite --config vite.democonfig.ts build",
"size": "size-limit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"clean": "rimraf dist react-utterances-client-*",
"format": "prettier {demo,src}/**/*.{js,jsx,ts,tsx,json} --write",
"prepare": "npm run build"
},
"dependencies": {
"classcat": "^5.0.5",
"use-sync-external-store": "^1.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.2 || ^18.2.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.58.7",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/use-sync-external-store": "^1.5.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"size-limit": "^12.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^8.0.10"
},
"size-limit": [
{
"name": "cjs",
"path": "dist/index.cjs"
},
{
"name": "esm",
"path": "dist/index.js"
}
],
"author": "mddanish00",
"homepage": "https://mddanish00.github.io/react-utterances-client",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mddanish00/react-utterances-client.git"
},
"keywords": [
"utterances",
"utterances component",
"comments",
"comments component",
"react",
"github",
"issues"
],
"funding": [
{
"type": "github",
"url": "https://github.com/mddanish00/react-utterances-client?sponsor=1"
}
]
}