-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.57 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
59
{
"name": "get-dtos",
"type": "module",
"version": "0.0.12",
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceStack/get-dtos.git"
},
"description": "Get Typed DTOs for a remote ServiceStack API",
"license": "BSD-3-Clause",
"homepage": "https://docs.servicestack.net/add-servicestack-reference",
"author": "ServiceStack, Inc. (https://servicestack.net)",
"bugs": {
"url": "https://github.com/ServiceStack/Issues"
},
"bin": "./dist/get-dtos.js",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"scripts": {
"build": "bun run build.ts",
"clean": "shx rm -rf ./dist",
"test": "bun test --",
"prepublishOnly": "bun run build",
"update-deps": "npx npm-check-updates -u && npm install",
"bump": "npm version patch && git push origin main --follow-tags",
"bump:minor": "npm version minor && git push origin main --follow-tags",
"bump:major": "npm version major && git push origin main --follow-tags",
"release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
},
"keywords": [
"apis",
"csharp",
"typescript",
"javascript",
"python",
"dart",
"php",
"java",
"kotlin",
"swift",
"fsharp",
"vb.net"
],
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"bun-plugin-dts": "^0.4.0",
"expect": "^30.4.1"
},
"dependencies": {}
}