-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 912 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
40
41
42
{
"name": "xsi-devkit",
"version": "0.1.3",
"description": "The Unofficial Cisco Broadworks Xtended Services Interface DevKit",
"keywords": [
"cisco",
"xsi",
"broadworks",
"broadsoft"
],
"repository": {
"type": "git",
"url": "https://github.com/trulysinclair/xsi-devkit"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup src",
"build:types": "openapi-typescript",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"devDependencies": {
"@types/node": "^22.15.21",
"auto-changelog": "^2.5.0",
"tsup": "^8.5.0",
"typescript": "^5.5.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": false,
"clean": true,
"format": "esm",
"dts": true
},
"packageManager": "yarn@4.9.1",
"dependencies": {
"openapi-fetch": "^0.14.0",
"openapi-typescript": "^7.8.0"
}
}