-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "image-actions",
"version": "1.0.0",
"description": "",
"main": "entrypoint.js",
"author": "Calibre <hello@calibreapp.com>",
"license": "ISC",
"scripts": {
"test": "GITHUB_WORKSPACE=__tests__/test-images jest",
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"jest": {
"setupFiles": [
"<rootDir>/.jest.env.js"
]
},
"dependencies": {
"@octokit/rest": "^16.17.0",
"ejs": "^3.1.9",
"glob": "^8.1.0",
"humanize": "0.0.9",
"js-yaml": "^3.13.1",
"sharp": "^0.24.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/js-yaml": "^3.12.5",
"@octokit/types": "^5.5.0",
"@types/node": "^20.14.9",
"@types/sharp": "^0.26.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^24.8.0",
"prettier": "^3.3.2",
"typescript": "^5.0.4"
}
}