-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "friends",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "YunYouJun's friends",
"author": {
"name": "YunYouJun",
"email": "[email protected]",
"url": "https://www.yunyoujun.cn"
},
"license": "MIT",
"homepage": "https://www.yunyoujun.cn/links/",
"repository": {
"type": "git",
"url": "git+https://github.com/YunYouJun/friends.git"
},
"bugs": {
"url": "https://github.com/YunYouJun/friends/issues"
},
"bin": "./bin/run",
"files": [
"/bin",
"/lib"
],
"scripts": {
"add": "tsx scripts/index.ts add",
"build": "npm run build:json",
"build:json": "npm run generate && npm run copy",
"generate": "tsx scripts/generate.ts",
"lint": "eslint .",
"copy": "cp -r ./public/. ./dist && cp README.md ./dist/",
"update": "git add -A && git commit -m '👥 update friends' && git push",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.8.1",
"chalk-pipe": "^6.2.0",
"commander": "^12.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@types/chalk-pipe": "^2.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"consola": "^3.2.3",
"eslint": "^9.15.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}