-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@remscodes/env-mode",
"version": "1.1.1",
"description": "A tiny, handy and strongly typed library for working with the env mode (NODE_ENV)",
"license": "MIT",
"author": {
"name": "Rémy Abitbol",
"url": "https://github.com/remscodes"
},
"scripts": {
"build": "rollup -c",
"test": "node tests/index.ts",
"types": "tsc --noEmit",
"types:spec": "pnpm run types -p ./tsconfig.spec.json",
"types:all": "pnpm run types & pnpm run types:spec",
"rm-dist": "node ./scripts/rm-dist.cjs",
"prebuild": "pnpm run rm-dist",
"pretest": "pnpm run types:all"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/remscodes/env-mode"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.8.1",
"esbuild": "^0.24.0",
"rollup": "^4.24.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.6.3"
},
"keywords": [
"env",
"environment",
"mode",
"process",
"node_env",
"is",
"in",
"select"
],
"packageManager": "pnpm@9.12.2",
"sideEffects": false
}