-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.34 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": "envfury",
"version": "0.1.4",
"description": "A collection of utilities for procedural reading of the process environment variables.",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"test": "node --import tsx --test src/*.test.ts",
"prettier:check": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"tsc:check": "tsc --noEmit",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"prepack": "yarn clean && yarn build",
"publish-lib": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run"
},
"author": "sesh92",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/sesh92/envfury/issues"
},
"homepage": "https://github.com/sesh92/envfury#readme"
}