forked from JoelSutherland/GitHub-jQuery-Repo-Widget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "github-web-widget",
"version": "4.0.0",
"description": "Web Components library for GitHub based on WebCell",
"keywords": [
"github",
"web",
"component",
"web-cell",
"widget"
],
"author": "[email protected]",
"license": "AGPL-3.0",
"homepage": "https://tech-query.me/GitHub-Web-Widget/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/GitHub-Web-Widget.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/GitHub-Web-Widget/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"scripts": {
"prepare": "husky",
"start": "rm -rf .parcel-cache/ docs/demo/ && cd test/ && parcel index.html --dist-dir ../docs/demo/ --open",
"pack-demo": "cd test/ && parcel build index.html --public-url . --dist-dir ../docs/demo/",
"test": "lint-staged",
"pack-dist": "rm -rf .parcel-cache/ dist/ && tsc --noEmit && parcel build",
"pack-docs": "rm -rf docs/ && typedoc source/ && npm run pack-demo",
"build": "rm -rf dist/ && npm run pack-dist && npm run pack-docs",
"help": "npm run pack-docs && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"dom-renderer": "^2.4.4",
"koajax": "^3.0.3",
"marked": "^15.0.0",
"marked-highlight": "^2.2.1",
"mobx": "^6.13.5",
"prismjs": "^1.29.0",
"web-cell": "^3.0.1"
},
"peerDependencies": {
"bootstrap": "^5",
"github-markdown-css": "^5"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@octokit/openapi-types": "^22.2.0",
"@parcel/config-default": "~2.12.0",
"@parcel/packager-ts": "~2.12.0",
"@parcel/transformer-less": "~2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@parcel/transformer-typescript-types": "~2.12.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"cross-env": "^7.0.3",
"element-internals-polyfill": "^1.3.12",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"open-cli": "^8.0.0",
"parcel": "~2.12.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.7",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
},
"lint-staged": {
"*.{html,md,less,json,yml,ts,tsx}": "prettier --write",
"*.{ts,tsx}": "eslint --fix"
}
}