-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
{
"name": "@sesamecare-oss/typia-standalone-validator",
"version": "1.0.1",
"description": "Build a standalone validator using Typia and tsup",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Developers <[email protected]>",
"license": "UNLICENSED",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc -p tsconfig.build.json && yarn dlx glob-chmod 755 build/bin/*",
"clean": "yarn dlx rimraf ./dist",
"lint": "eslint .",
"postinstall": "coconfig",
"test": "vitest"
},
"bin": "build/bin/cli.js",
"keywords": [
"typescript",
"sesame"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sesamecare/typia-standalone-validator.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"publishCmd": "yarn dlx pinst --disable"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"coconfig": "@openapi-typescript-infra/coconfig"
},
"devDependencies": {
"@openapi-typescript-infra/coconfig": "^4.2.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^9.2.3",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"coconfig": "^1.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"vitest": "^0.34.6"
},
"dependencies": {
"minimist": "^1.2.8",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"typia": "*"
}
}