-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 914 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
{
"name": "travia-api",
"version": "0.1.0",
"description": "A simple client for Travia API",
"author": "Giorgi Gvimradze",
"license": "MIT",
"keywords": [
"travia",
"api",
"travia-api"
],
"repository": {
"type": "git",
"url": "https://github.com/litehacker/travia-api"
},
"main": "dist/index.js",
"module": "dist/index.m.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node -e \"const fs = require('fs'); const path = './dist'; if (fs.existsSync(path)) { fs.rmSync(path, { recursive: true, force: true }); }\" && microbundle --tsconfig tsconfig.json --no-sourcemap"
},
"devDependencies": {
"@types/node": "^20.14.11",
"microbundle": "^0.13.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^1.7.2"
}
}