-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1022 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1022 Bytes
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
{
"name": "easy-setup",
"version": "1.4.0",
"description": "easy-setup",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"bin": {
"easy-setup": "bundle/cli.js"
},
"files": [
"dist",
"bundle"
],
"repository": {
"type": "git",
"url": "git+https://github.com/easy-install/easy-setup.git"
},
"homepage": "https://github.com/easy-install/easy-setup#readme",
"keywords": [
"easy-setup"
],
"author": "ahaoboy",
"license": "ISC",
"scripts": {
"format": "deno fmt --ignore=node_modules,dist,bundle,target --indent-width=2 --no-semicolons --single-quote",
"build": "tsc -p tsconfig.build.json && npm run bundle",
"bundle": "esbuild --target=node20 --outdir=bundle --bundle --platform=node --format=cjs src/action.ts"
},
"devDependencies": {
"@easy-install/easy-install": "^1.3.8",
"@actions/core": "1.11.1",
"@types/node": "22.13.4",
"esbuild": "0.25.0",
"typescript": "5.7.3"
},
"pnpm": {
"neverBuiltDependencies": []
}
}