-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 980 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 980 Bytes
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",
"version": "1.6.0",
"type": "module",
"main": "dist/giscus.mjs",
"module": "dist/giscus.mjs",
"exports": {
".": {
"types": "./types/giscus.d.ts",
"import": "./dist/giscus.mjs"
}
},
"types": "types/giscus.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/giscus/giscus-component.git",
"directory": "web"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src --check",
"format:fix": "prettier src --write"
},
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vite": "^6.0.11"
}
}