-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.43 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
{
"name": "exiftool-action",
"version": "1.0.0",
"description": "Adds exiftool to the path for use in GitHub Actions",
"main": "index.js",
"scripts": {
"clean": "rimraf dist pnpm-lock.yaml node_modules",
"preinstall": "npx only-allow pnpm",
"create-release": "gh release create",
"bundle": "pnpm run format:write && pnpm run package",
"format:write": "prettier --cache --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"package": "pnpm ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "pnpm run package --watch",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && pnpm run format:write && pnpm run lint && pnpm run package"
},
"keywords": [],
"author": "daniel maricic <[email protected]>",
"license": "GPL-3.0-only",
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"rimraf": "5.0.7"
}
}