-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.81 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.81 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
70
71
72
73
74
75
76
{
"name": "valitype",
"description": "A lightweight TypeScript validation library for environment variables and configuration.",
"version": "1.1.0",
"private": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Samuel Fontebasso",
"license": "MIT",
"scripts": {
"build": "tsup",
"build:umd": "node build.umd.mjs",
"build:watch": "tsc --watch",
"dev:test": "vitest",
"docs": "typedoc",
"format": "prettier --write ./src ./tests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fontebasso/valitype.git"
},
"bugs": {
"url": "https://github.com/fontebasso/valitype/issues"
},
"homepage": "https://github.com/fontebasso/valitype#readme",
"unpkg": "dist/valitype.umd.js",
"keywords": [
"validator",
"validation",
"type-checking",
"types",
"configuration",
"schema",
"typescript",
"javascript",
"lightweight"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/coverage-v8": "^3.1.2",
"esbuild": "^0.25.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}