-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@ghlandy/personal-misc",
"version": "0.0.0",
"private": true,
"description": "Just something miscellaneous for ghlandy personal usage.",
"homepage": "https://github.com/GHLandy/personal-misc",
"bugs": {
"url": "https://github.com/GHLandy/personal-misc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GHLandy/personal-misc.git"
},
"license": "MIT",
"author": {
"name": "GHLandy",
"email": "liftland953@163.com",
"url": "https://github.com/GHLandy"
},
"scripts": {
"lint": "eslint --fix \"**/*.{js,jsx,cjs,mjs,ts,tsx,ctx,mts,vue}\"",
"prepare": "husky",
"prettier": "prettier -c -w .",
"tsx": "tsx playground/index.ts"
},
"lint-staged": {
"**/*.{js,jsx,cjs,mjs,ts,tsx,ctx,mts,vue,html,css,less,sass,scss,json,md,mdx}": [
"prettier -c -w"
]
},
"dependencies": {
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"pnpm": {}
}