-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "serenibase-sdk",
"version": "1.0.0",
"description": "Official JavaScript SDK for SereniBase APIs",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=tests/integration",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"docs": "typedoc src/index.ts"
},
"keywords": [
"serenibase",
"sdk",
"typescript",
"database",
"rest-api",
"api-client"
],
"author": "Aptlogica Technologies",
"repository": {
"type": "git",
"url": "https://github.com/aptlogica/base-sdk.git"
},
"homepage": "https://github.com/aptlogica/base-sdk#readme",
"bugs": {
"url": "https://github.com/aptlogica/base-sdk/issues"
},
"license": "MIT",
"dependencies": {
"axios": "^1.14.0",
"eventemitter3": "^5.0.1",
"formdata-node": "^6.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"overrides": {
"serialize-javascript": "^6.0.2",
"minimatch": "^9.0.5",
"rollup": "^4.21.2"
}
}