-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "github-feed-back",
"description": "Bring my GitHub feed back",
"private": false,
"version": "0.1.5",
"type": "module",
"files": [
"./dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/github-feed-back.git"
},
"homepage": "https://github.com/Sec-ant/github-feed-back",
"bugs": {
"url": "https://github.com/Sec-ant/github-feed-back/issues",
"email": "[email protected]"
},
"keywords": [
"github",
"feed",
"userscript"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"config": {},
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"dev": "vite",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"format": "prettier . --write",
"prebuild": "npm run lint && npm run type-check && npm run format",
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"sync": "curl -X PUT 'https://registry-direct.npmmirror.com/github-feed-back/sync'",
"postpublish": "npm run sync",
"ncu": "npx npm-check-updates -u",
"postncu": "npm i"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.48.0",
"npm-check-updates": "^16.13.2",
"prettier": "^3.0.3",
"semantic-release": "^23.0.4",
"typescript": "^5.2.2",
"vite": "^5.0.2",
"vite-plugin-monkey": "^3.5.0"
}
}