-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"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": "[email protected]",
"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.7"
},
"devDependencies": {
"@ghlandy/eslint-config-prettier": "^0.3.0",
"@ghlandy/prettier-config": "^0.7.0",
"@types/crypto-js": "^4.2.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}