-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "@b3-business/hostingde",
"version": "0.1.0",
"description": "A tree-shakeable API client for hosting.de using Cherry",
"keywords": [
"api-client",
"cherry",
"dns",
"hosting.de",
"hostingde"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/b3-business/hostingde"
},
"files": [
"dist",
"src"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"format": "oxfmt src test scripts package.json tsconfig.json README.md",
"format:check": "oxfmt --check src test scripts package.json tsconfig.json README.md",
"lint": "oxlint --deny-warnings --type-aware --type-check src test scripts",
"check": "bun run lint && bun run format:check",
"typecheck": "tsc --noEmit -p .",
"test": "bun test",
"prepublishOnly": "npm run check && npm run test && npm run build",
"dry-npm": "npm publish --dry-run --access public"
},
"dependencies": {
"@b3-business/cherry": "0.3.2",
"valibot": "^1.2.0"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"oxfmt": "^0.35.0",
"oxlint": "^1.36.0",
"oxlint-tsgolint": "latest",
"tsdown": "^0.19.0-beta.2",
"typescript": "^5.9.3"
}
}