-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "typescript-type-validator",
"version": "1.1.0",
"description": "Typescript-first type validator",
"author": {
"name": "Jeremy Li"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/junzhli/typescript-type-validator.git"
},
"keywords": [
"typesafe",
"validate",
"validator",
"json",
"schema",
"typescript"
],
"type": "module",
"dependencies": {},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && yarn build:cjs && yarn run build:esm && yarn fixup",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"fixup": "./build-scripts/fix-dist.sh",
"lint": "npx eslint src/**",
"prepublish": "yarn build",
"test": "vitest run",
"test-coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@vitest/coverage-v8": "3.2.3",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.3"
}
}