forked from pkg-size/action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.46 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.46 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "pkg-size-action",
"version": "0.0.0-semantic-release",
"description": "Check package size changes on pull-requests",
"type": "module",
"packageManager": "pnpm@10.30.3",
"keywords": [
"github",
"action",
"pkg-size",
"package",
"distribution",
"size",
"watch"
],
"license": "MIT",
"repository": "pkg-size/action",
"funding": "https://github.com/pkg-size/action?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"scripts": {
"build": "rolldown -c",
"lint": "eslint .",
"test": "node --no-warnings=MODULE_TYPELESS_PACKAGE_JSON --test $(find src -name '*.test.mjs')"
},
"lint-staged": {
"src/**/*.js": [
"eslint",
"npm run build",
"git add dist"
]
},
"devDependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/io": "^3.0.2",
"builtin-modules": "^5.0.0",
"byte-size": "^9.0.1",
"conventional-changelog-conventionalcommits": "^9.2.0",
"eslint": "^8.57.1",
"glob-to-regexp": "^0.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"lodash-es": "^4.17.21",
"markdown-table": "^3.0.4",
"outdent": "^0.8.0",
"rolldown": "1.0.0-rc.18"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"ignorePatterns": [
"dist/**"
]
}
}