-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "@chieforz/clear-aws-glacier",
"version": "1.0.2",
"description": "",
"keywords": [
"aws",
"glacier",
"clear",
"delete",
"node.js",
"typescript"
],
"license": "MIT",
"author": "ChiefORZ <[email protected]>",
"type": "module",
"main": "dist/main.js",
"bin": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"postinstall": "is-ci || husky install",
"precommit": "lint-staged",
"release": "release-it"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix"
},
"prettier": "@chieforz/prettier-config",
"eslintConfig": {
"extends": "@chieforz/eslint-config-tslint-base"
},
"dependencies": {
"@t3-oss/env-core": "^0.6.1",
"cli-progress": "^3.12.0",
"fast-glob": "^3.3.1",
"zod": "^3.22.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@chieforz/eslint-config-tslint-base": "^1.1.3",
"@chieforz/prettier-config": "^1.1.3",
"@chieforz/renovate-config": "^1.1.3",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@release-it/conventional-changelog": "^7.0.0",
"@types/node": "^20.4.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.0",
"release-it": "^16.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}