forked from yusing/godoxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 797 Bytes
/
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
{
"name": "godoxy-schemas",
"version": "0.9.0-20",
"description": "JSON Schema and typescript types for GoDoxy configuration",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yusing/go-proxy"
},
"files": [
"schemas/",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./schemas/index.ts",
"exports": {
".": {
"types": "./schemas/index.d.ts",
"import": "./schemas/index.ts",
"require": "./schemas/index.js"
}
},
"devDependencies": {
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-json-schema": "^0.65.1"
},
"displayName": "GoDoxy Types",
"packageManager": "[email protected]",
"publisher": "yusing",
"scripts": {
"gen-schema": "make gen-schema",
"format:write": "prettier --write \"schemas/**/*.ts\" --cache"
}
}