-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "@giscus/solid",
"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": "solid"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src --check",
"format:fix": "prettier src --write"
},
"dependencies": {
"giscus": "^1.5.0"
},
"peerDependencies": {
"solid-js": "^1.3 || ^1.4 || ^1.5 || ^1.6"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-solid": "^0.14.5",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-solid": "^2.11.0"
}
}