-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "friends",
"type": "module",
"version": "latest",
"packageManager": "[email protected]",
"description": "MengNianxiaoyao's friends",
"author": {
"name": "MengNianxiaoyao",
"email": "[email protected]",
"url": "https://blog.mnxy.eu.org"
},
"license": "MIT",
"homepage": "https://blog.mnxy.eu.org/links/",
"repository": {
"type": "git",
"url": "git+https://github.com/MengNianxiaoyao/friends.git"
},
"bugs": {
"url": "https://github.com/MengNianxiaoyao/friends/issues"
},
"bin": "./bin/run",
"files": [
"/bin",
"/lib"
],
"scripts": {
"build": "pnpm run build:json",
"build:json": "pnpm run generate && pnpm run copy",
"generate": "tsx scripts/generate.ts",
"lint": "eslint . --fix",
"copy": "cp -r ./public/. ./dist && cp README.md ./dist/",
"check": "tsx scripts/check.ts",
"friends": "tsx scripts/index.ts add",
"update": "git add -A && git commit -m '👥 update friends' && git push",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.6.8",
"chalk": "^5.3.0",
"chalk-pipe": "^6.0.0",
"commander": "^12.1.0",
"inquirer": "^9.3.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@types/chalk-pipe": "^2.0.4",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.9",
"consola": "^3.2.3",
"eslint": "^8.57.0",
"tsx": "^4.16.0",
"typescript": "^5.5.3"
}
}