-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "@dnl-fm/inline-sdk",
"version": "0.2.1",
"description": "TypeScript SDK for Inline message queue API",
"type": "module",
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "bun test",
"type-check": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"format": "biome format .",
"format:fix": "biome format --write .",
"quality": "bun run type-check && bun run lint && bun run format:fix && bun test"
},
"keywords": [
"queue",
"message-queue",
"sdk",
"typescript",
"inline"
],
"author": "Tino Ehrich",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dnl-fm/inline-sdk.git",
"directory": "sdk"
},
"homepage": "https://github.com/dnl-fm/inline-sdk",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/bun": "latest",
"bun-types": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"zod": "^3"
}
}