-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 977 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 977 Bytes
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
{
"name": "endpoints-sdk-cli",
"description": "endpoints sdk cli",
"repository": "https://github.com/matsuri-tech/endpoints-sdk-cli.git",
"version": "3.1.7",
"type": "module",
"author": "hrdtbs",
"bin": {
"mes": "./dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "eslint .",
"postlint": "prettier --check .",
"format": "eslint . --fix",
"postformat": "prettier --write .",
"coverage": "vitest --coverage",
"build": "tsup src/index.ts --out-dir dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"eslint": "9.39.4",
"eslint-config-matsuri": "6.0.2",
"prettier": "3.8.3",
"tsup": "8.5.1",
"typescript": "^6.0.0",
"vitest": "4.1.5"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "15.3.5",
"commander": "14.0.3",
"json-schema-to-typescript": "15.0.4"
}
}