-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "github-corner-element",
"description": "A web component for the corner banner of GitHub.",
"version": "1.0.2",
"type": "module",
"engines": {
"node": "^16.17.0",
"npm": "^8.15.0"
},
"license": "MIT",
"homepage": "https://github.com/YuskaWu/github-corner-element",
"author": {
"name": "Yuska Wu",
"url": "https://github.com/YuskaWu"
},
"repository": {
"type": "git",
"url": "https://github.com/YuskaWu/github-corner-element.git"
},
"bugs": {
"url": "https://github.com/YuskaWu/github-corner-element/issues"
},
"keywords": [
"web-component",
"custom-element",
"github",
"banner",
"corner"
],
"files": [
"dist"
],
"main": "./dist/github-corner-element.umd.js",
"browser": "./dist/github-corner-element.umd.js",
"module": "./dist/github-corner-element.es.js",
"exports": {
".": {
"import": "./dist/github-corner-element.es.js",
"require": "./dist/github-corner-element.umd.js"
}
},
"scripts": {
"lint": "npx eslint .",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"docs": "node build-docs.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"github-markdown-css": "^5.1.0",
"prettier": "^2.7.1",
"showdown": "^2.1.0",
"showdown-highlight": "^3.1.0",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}