-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "size-action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "ncc build src/index.ts -t --minify",
"clean": "rm -rf dist",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --check '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"prettier:fix": "prettier --write '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"markdownlint": "markdownlint '**/*.md' '#apps/docs/**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#apps/docs/**/*.md' '#.changeset' '#**/CHANGELOG.md'"
},
"keywords": [],
"author": "oneweek.lee",
"license": "ISC",
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@naverpay/hidash": "^0.1.3",
"brotli-size": "^4.0.0",
"chalk": "^5.3.0",
"glob": "^11.0.0",
"gzip-size": "^7.0.0",
"i18next": "^24.0.2",
"minimatch": "^10.0.1",
"pretty-bytes": "^6.1.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@naverpay/commit-helper": "^1.1.0",
"@naverpay/eslint-config": "^1.0.7",
"@naverpay/markdown-lint": "^0.0.3",
"@naverpay/prettier-config": "^1.0.0",
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.2",
"lefthook": "^1.8.2",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint"
],
"**/*.{ts,tsx,js,jsx,json}": [
"prettier --check"
],
"!(**/CHANGELOG.md|apps/docs/**/*.md|.changeset/**/*.md)*.md": [
"markdownlint"
]
}
}