-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@latehours/secret",
"version": "1.0.0",
"description": "`secret` is a simple utility libraty for handling secrets in a typescript app",
"license": "MIT",
"homepage": "https://github.com/jozan/secret#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jozan/secret.git"
},
"bugs": {
"url": "https://github.com/jozan/secret/issues"
},
"keywords": [
"secret"
],
"author": "jozan <[email protected]>",
"sideEffects": false,
"type": "module",
"module": "./dist/esm/secret.js",
"types": "./dist/dts/secret.d.ts",
"exports": {
".": {
"types": "./dist/dts/secret.d.ts",
"import": "./dist/esm/secret.js",
"default": "./dist/esm/secret.js"
},
"./io-ts": {
"types": "./dist/dts/io-ts/secret.d.ts",
"import": "./dist/esm/io-ts/secret.js",
"default": "./dist/esm/io-ts/secret.js"
},
"./zod": {
"types": "./dist/dts/zod/secret.d.ts",
"import": "./dist/esm/zod/secret.js",
"default": "./dist/esm/zod/secret.js"
}
},
"files": [
"./dist/**/*.js",
"./dist/**/*.d.ts",
"./dist/**/*.map"
],
"devDependencies": {
"@types/bun": "latest",
"fast-check": "^3.21.0",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.21",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"scripts": {
"clean": "rm -r ./dist",
"check": "tsc -b tsconfig.json",
"build": "bun run clean && bun run build-ci",
"build-ci": "bun run build-esm",
"build-esm": "tsc -b tsconfig.build.json"
}
}