-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.84 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
{
"name": "@base44/sdk",
"version": "0.8.22",
"description": "JavaScript SDK for Base44 API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs": "typedoc",
"prepublishOnly": "npm run build",
"create-docs": "npm run create-docs:generate && npm run create-docs:process",
"create-docs-local": "npm run create-docs && npm run copy-docs-local",
"copy-docs-local": "node scripts/mintlify-post-processing/copy-to-local-docs.js",
"create-docs:generate": "typedoc",
"create-docs:process": "node scripts/mintlify-post-processing/file-processing/file-processing.js"
},
"dependencies": {
"axios": "^1.6.2",
"socket.io-client": "^4.7.5",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/node": "^25.0.1",
"@types/unist": "^3.0.3",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-istanbul": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"dotenv": "^16.3.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"nock": "^13.4.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.3.2",
"typescript-eslint": "^8.51.0",
"vitest": "^1.6.1"
},
"keywords": [
"base44",
"api",
"sdk"
],
"author": "Base44",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/base44/javascript-sdk.git"
},
"bugs": {
"url": "https://github.com/base44/javascript-sdk/issues"
},
"homepage": "https://github.com/base44/javascript-sdk#readme"
}