-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "@lunariajs/action",
"type": "module",
"version": "0.1.0",
"private": "true",
"description": "Lunaria GitHub Action",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"engines": {
"node": ">=20"
},
"author": "Yan Thomas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yanthomasdev/lunaria-action"
},
"bugs": "https://github.com/yanthomasdev/lunaria-action/issues",
"scripts": {
"build": "pkgroll --target=node20 --minify",
"format": "prettier --cache .",
"lint": "tsc",
"version": "pnpm changeset version && pnpm i --no-frozen-lockfile"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@lunariajs/core": "^0.1.0",
"execa": "^8.0.1",
"markdown-table": "^3.0.3",
"micromatch": "^4.0.5",
"resolve-package-path": "^4.0.3",
"zod": "^3.22.4"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/micromatch": "^4.0.3",
"@types/node": "^20.11.16",
"pkgroll": "^2.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.7.6"
}