-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@myrotvorets/create-server",
"version": "3.2.0",
"description": "Creates and configures a HTTP/HTTPS server",
"type": "module",
"exports": "./dist/index.mjs",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepack": "npm run build",
"test": "exit 0"
},
"files": [
"dist/**/*.d.mts",
"dist/**/*.mjs",
"dist/**/*.mjs.map"
],
"typings": "dist/index.d.mts",
"keywords": [],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@types/node": ">= 20.11.16",
"envalid": "^8.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"envalid": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/create-server.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/create-server/issues"
},
"homepage": "https://github.com/myrotvorets/create-server#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}