-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "@giscus/react",
"version": "3.0.0",
"types": "dist/index.d.ts",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/giscus/giscus-component.git",
"directory": "react"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"dependencies": {
"giscus": "^1.5.0"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}