-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
66
67
68
69
{
"name": "@coderspirit/safe-env",
"version": "1.4.1",
"description": "Safe & strongly typed environment variables accessor",
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"types": "./dist/main.d.cts",
"files": ["dist"],
"exports": {
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
},
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
}
},
"keywords": ["typescript", "nominal", "environment"],
"author": "Andres Correa Casablanca <castarco@coderspirit.xyz>",
"private": false,
"license": "MIT",
"scripts": {
"build": "rm -rf dist/* && rollup --config rollup.config.mjs",
"format": "pnpm biome check --write --files-ignore-unknown=true .",
"format-staged": "biome-check-staged",
"lint": "pnpm lint:biome",
"lint:biome": "pnpm biome check --files-ignore-unknown=true .",
"lint:publint": "check-dist && publint",
"prepublishOnly": "turbo all:ci",
"publish:safe": "safe-publish",
"test": "vitest -c vitest.config.mts run",
"test:cov": "vitest -c vitest.config.mts run --coverage",
"typecheck": "tsc --incremental true --tsBuildInfoFile .tsbuildinfo --noEmit -p ./tsconfig.json"
},
"dependencies": {
"@coderspirit/nominal": "^4.0.3",
"@coderspirit/nominal-inputs": "workspace:^"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.6",
"get-tsconfig": "^4.10.0",
"publint": "^0.3.9",
"rollup": "^4.34.8",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.2.0",
"tslib": "^2.8.1",
"turbo": "^2.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coder-Spirit/nominal.git"
},
"bugs": {
"url": "https://github.com/Coder-Spirit/nominal/issues"
},
"homepage": "https://github.com/Coder-Spirit/nominal#readme",
"publishConfig": {
"provenance": true
}
}