forked from giscus/giscus-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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/vue",
"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": "vue"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run build:types",
"build:types": "vue-tsc && mv dist/types/lib/* dist/ && rm -rf dist/types",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"dependencies": {
"giscus": "^1.5.0"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"devDependencies": {
"@types/node": "^18.19.42",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-vue": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.27.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue-tsc": "^2.0.29"
}
}