-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 912 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 912 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
{
"name": "infer-heroku-server-url",
"version": "1.0.0",
"description": "Infer the server URL on Heroku",
"main": "dist",
"files": [
"dist/**/*.@(js|ts|map)"
],
"scripts": {
"build": "tsup",
"check-types": "tsc --noEmit",
"lint": "eslint",
"format:check": "prettier --check \"**/*.@(ts|tsx|js|cjs|md|json|yml)\"",
"format:fix": "prettier --write \"**/*.@(ts|tsx|js|cjs|md|json|yml)\"",
"prepare": "npm run build"
},
"repository": "metabolize/infer-heroku-server-url",
"keywords": [
"heroku"
],
"author": "Metabolize LLC",
"license": "MIT",
"homepage": "https://github.com/metabolize/infer-heroku-server-url#readme",
"devDependencies": {
"@types/node": "20.14.11",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.8.0",
"neostandard": "0.11.1",
"prettier": "3.3.3",
"tsup": "8.2.1",
"typescript": "5.5.3"
}
}