-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "assets",
"version": "1.0.0",
"description": "Stakekit assets",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"delete-png-assets": "tsx manage-image-assets.ts delete",
"convert-svg-to-png": "tsx manage-image-assets.ts convert",
"prepare": "husky install"
},
"repository": "git+https://github.com/stakekit/assets.git",
"author": "ilia gazdaliev <invimind@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/stakekit/assets/issues"
},
"homepage": "https://github.com/stakekit/assets#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.svg": [
"node manageImages.js convert",
"git add **/*_*x*.png"
]
},
"dependencies": {
"glob": "^10.3.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"sharp": "^0.32.5"
},
"devDependencies": {
"@types/node": "^20.10.3",
"tsx": "^4.6.2"
},
"packageManager": "pnpm@10.6.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}