-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 958 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
41
42
43
44
45
46
{
"name": "xibo.js",
"version": "1.0.0",
"description": "A simple library to handle Xibo CMS API",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"xibo",
"api",
"library",
"typescript",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/mrlulu51/xibo.js"
},
"bugs": {
"url": "https://github.com/mrlulu51/xibo.js/issues"
},
"homepage": "https://github.com/mrlulu51/xibo.js#readme",
"author": "mrlulu51",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.6.1",
"@types/qs": "^6.9.16",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"axios": "^0.21.1",
"qs": "^6.13.0"
}
}