-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
56
57
58
{
"name": "@gratio/api",
"version": "3.1.2",
"description": "TypeScript common types for Gratio projects API responses and requests",
"homepage": "https://github.com/Gratio-tech/Api#readme",
"packageManager": "bun@1.2.17",
"repository": {
"type": "git",
"url": "git+https://github.com/Gratio-tech/Api.git"
},
"bugs": {
"url": "https://github.com/Gratio-tech/Api/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": "dist/cli",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --no-dts",
"lint": "eslint . --max-warnings=0",
"style:check": "prettier --check src/**/*.ts",
"style": "prettier --write src/**/*.ts",
"prepare": "bun run build",
"test": "bun test",
"test:publish": "npm publish --dry-run"
},
"author": "Gratio",
"contributors": [
"domin-mnd <dominnya@gmail.com>",
"genadich <ex-er-sis@ya.ru>"
],
"license": "MIT",
"dependencies": {
"dotenv": "17.2.2",
"openapi-typescript": "^7.9.1"
},
"devDependencies": {
"@eslint/js": "9.30.0",
"@types/bun": "1.2.22",
"eslint": "9.30.0",
"eslint-plugin-import": "2.32.0",
"globals": "16.3.0",
"krosh": "0.0.2",
"prettier": "3.6.2",
"terser": "5.44.0",
"tsup": "8.5.0",
"typescript": "5.8.3",
"typescript-eslint": "8.35.1"
},
"engines": {
"node": ">=18.11.0",
"deno": ">=2"
}
}