-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1005 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
37
38
39
40
{
"name": "shlink.ts",
"version": "1.0.1",
"description": "Manage your shlink instance with this package",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build-docs": "npx typedoc ./src",
"build": "npx ts-node ./src/createExports.js && tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"gh-publish": "node ./src/github-util/gh_publish.js",
"npm-publish": "node ./src/github-util/npm_publish.js"
},
"keywords": [
"shlink",
"wrapper",
"typescript",
"api",
"axios"
],
"author": "Bothim_TV",
"license": "MIT",
"repository": {
"url": "git+https://github.com/BothimTV/shlink.ts.git"
},
"homepage": "shlinkts.bothimtv.com",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@types/node": "^22.0.3",
"buffer": "^6.0.3",
"fs": "0.0.1-security",
"ts-node": "^10.9.2",
"tsup": "^8.1.1",
"typedoc": "^0.27.2",
"typescript": "^5.5.3"
}
}