generated from moontaiworks/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
74
75
76
77
78
79
80
81
82
{
"name": "yargs-typebox",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.3",
"description": "Use typebox to define your yargs arguments.",
"author": "moontai0724",
"license": "MIT",
"homepage": "https://moontaiworks.github.io/yargs-typebox",
"bugs": {
"url": "https://github.com/moontaiworks/yargs-typebox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moontaiworks/yargs-typebox.git"
},
"keywords": [
"yargs",
"typebox",
"type"
],
"files": [
"build",
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"import": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"scripts": {
"build": "rm -rf dist build docs && tsc --project src/tsconfig.build.json && tsc-alias --project src/tsconfig.build.json && vite build && typedoc",
"test": "vitest",
"lint": "eslint ; prettier --check .",
"lint:fix": "eslint --fix ; prettier --write .",
"prepare": "husky || true"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@sinclair/typebox": "^0.32.35",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.7",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "~5.5",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8",
"vitest": "^2.1.1",
"yargs": "^17.0.0"
},
"peerDependencies": {
"@sinclair/typebox": "^0.32.35",
"yargs": "^17.0.0"
}
}