@adddog/env 0.0.1 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +26 -34
package/package.json
CHANGED
|
@@ -1,40 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adddog/env",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"main": "./
|
|
5
|
-
"types": "./
|
|
4
|
+
"main": "./dist/main.js",
|
|
5
|
+
"types": "./dist/main.d.ts",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./package.json": "./package.json",
|
|
8
8
|
".": {
|
|
9
|
-
"
|
|
9
|
+
"types": "./dist/main.d.ts",
|
|
10
|
+
"import": "./dist/main.js",
|
|
11
|
+
"module": "./dist/main.js",
|
|
12
|
+
"require": "./dist/main.cjs"
|
|
10
13
|
}
|
|
11
14
|
},
|
|
12
|
-
"files": [
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
13
18
|
"dependencies": {
|
|
14
19
|
"dotenv-flow": "^4.1.0"
|
|
15
20
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsup ./src --outDir dist --clean --format esm,cjs --shims --dts --platform node",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"lint:fix": "eslint --fix .",
|
|
20
|
-
"types": "tsc -p tsconfig.typecheck.json",
|
|
21
|
-
"test": "echo '⚠️⚠️⚠️no test vitest --watch=false'",
|
|
22
|
-
"dev": "tsx src/index.ts",
|
|
23
|
-
"knip": "knip",
|
|
24
|
-
"release": "bumpp --yes --no-push --no-tag --release patch",
|
|
25
|
-
"prepublishOnly": "pnpm run lint && pnpm run types && pnpm run build",
|
|
26
|
-
"prepack": "pnpm run prepublishOnly",
|
|
27
|
-
"version:patch": "npm version patch --no-git-tag-version"
|
|
28
|
-
},
|
|
29
21
|
"devDependencies": {
|
|
30
|
-
"@adddog/monorepo-consistency": "workspace:*",
|
|
31
22
|
"@types/dotenv-flow": "^3.3.3",
|
|
32
23
|
"bumpp": "^10.4.1",
|
|
33
|
-
"eslint": "^10.0.
|
|
24
|
+
"eslint": "^10.0.2",
|
|
34
25
|
"tsup": "^8.5.1",
|
|
35
|
-
"typescript": "^5.9.3"
|
|
26
|
+
"typescript": "^5.9.3",
|
|
27
|
+
"@adddog/monorepo-consistency": "0.0.12"
|
|
36
28
|
},
|
|
37
|
-
"version": "0.0.
|
|
29
|
+
"version": "0.0.4",
|
|
38
30
|
"engines": {
|
|
39
31
|
"node": ">= 22",
|
|
40
32
|
"pnpm": ">= 10",
|
|
@@ -42,17 +34,17 @@
|
|
|
42
34
|
},
|
|
43
35
|
"publishConfig": {
|
|
44
36
|
"access": "public",
|
|
45
|
-
"registry": "https://registry.npmjs.org/"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
37
|
+
"registry": "https://registry.npmjs.org/"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup ./src --outDir dist --clean --format esm,cjs --shims --dts --platform node",
|
|
41
|
+
"lint": "eslint .",
|
|
42
|
+
"lint:fix": "eslint --fix .",
|
|
43
|
+
"types": "tsc -p tsconfig.typecheck.json",
|
|
44
|
+
"test": "echo '⚠️⚠️⚠️no test vitest --watch=false'",
|
|
45
|
+
"dev": "tsx src/index.ts",
|
|
46
|
+
"knip": "knip",
|
|
47
|
+
"release": "bumpp --yes --no-push --no-tag --release patch",
|
|
48
|
+
"version:patch": "npm version patch --no-git-tag-version"
|
|
57
49
|
}
|
|
58
|
-
}
|
|
50
|
+
}
|