-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 868 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
{
"name": "shlink-client",
"version": "1.0.1",
"author": {
"email": "[email protected]",
"name": "Neil Richter",
"url": "https://nook.sh"
},
"description": "Shlink JavaScript API client",
"homepage": "https://github.com/noook/shlink-client",
"repository": {
"type": "git",
"url": "git+https://github.com/noook/shlink-client.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"dev": "tsc -p tsconfig-cjs.json -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"shlink",
"api",
"client",
"typescript",
"short-urls"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"typescript": "^4.1.2"
}
}