-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@mrspartak/config",
"repository": "https://github.com/mrspartak/config",
"homepage": "https://mrspartak.github.io/config",
"version": "1.0.0",
"description": "Config facade for TS",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"test": "pnpm build && pnpm test:src:run && pnpm test:build && pnpm test:report",
"test:build": "vitest run --dir test/built",
"test:src": "vitest --coverage --dir test/src",
"test:src:run": "vitest run --coverage --dir test/src",
"test:report": "dotenvx run -- coveralls",
"check:format": "biome format --write ./src",
"check:lint": "biome lint ./src",
"local:node": "tsx local/main.ts",
"prepublishOnly": "node ./bin/prepublish.js && pnpm build && agadoo",
"version": "pnpm doc && git add docs",
"release": "cross-env RELEASE_MODE=true np",
"doc": "typedoc --logLevel Verbose"
},
"author": "Spartak Kagramanyan",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@dotenvx/dotenvx": "^0.45.0",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"agadoo": "^3.0.0",
"cross-env": "^7.0.3",
"lefthook": "^1.6.15",
"myzod": "^1.11.0",
"np": "^10.0.5",
"superstruct": "^1.0.4",
"tsup": "^8.1.0",
"tsx": "^4.15.4",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-coverage": "^3.2.0",
"typedoc-plugin-include-example": "^1.2.0",
"typedoc-plugin-missing-exports": "^2.3.0",
"typescript": "^5.4.5",
"valibot": "^0.32.0",
"vitest": "^1.6.0",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.12.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./web": "./dist/web.js"
},
"sideEffects": false,
"files": ["dist"],
"publishConfig": {
"access": "public"
}
}