-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "hippo",
"version": "1.0.0",
"author": "Micha Hanselmann",
"description": "asset size comparison and reporting tool",
"private": true,
"type": "module",
"main": "index.ts",
"scripts": {
"start": "node index.ts",
"test": "node --test tests/*.test.ts",
"prepare": "husky",
"lint": "prettier --check \"**/*.ts\" index.ts",
"format": "prettier --write \"**/*.ts\" index.ts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"prettier": "^3.3.3",
"typescript": "^5.8.3"
},
"lint-staged": {
"*/*.ts": "prettier --write"
},
"dependencies": {
"@octokit/rest": "^22.0.0",
"dotenv": "^16.4.5",
"semver": "^7.6.3"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}