-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "@jeppech/schema-ts",
"version": "2.0.4",
"description": "Create schemas for validating unknown data",
"author": "Jeppe Christiansen",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/jeppech/schema-ts.git"
},
"bugs": {
"url": "https://github.com/jeppech/schema-ts/issues"
},
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "pnpm format && pnpm lint && pnpm build",
"prepublishOnly": "pnpm lint",
"format": "prettier --config .prettierrc --write 'src/**/*.ts'",
"lint": "eslint src/",
"clean": "rm -rf ./lib/**/*",
"build": "pnpm clean && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"schema",
"validation",
"unknown",
"data",
"typescript"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@jeppech/results-ts": "^1.3.2"
}
}