-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 1.7 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 1.7 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
{
"name": "@dnspresso/connect",
"version": "0.1.0",
"description": "TypeScript SDK for managing DNS records across providers.",
"keywords": [
"dns",
"dns-records",
"domain",
"sdk",
"typescript"
],
"homepage": "https://github.com/DNSpresso/connect#readme",
"bugs": {
"url": "https://github.com/DNSpresso/connect/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DNSpresso/connect.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"prepack": "pnpm run build",
"clean": "node --eval \"const { rmSync } = require('node:fs'); for (const path of ['dist', 'coverage']) rmSync(path, { recursive: true, force: true });\"",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint src tests tsup.config.ts",
"test": "vitest run src",
"test:live": "RUN_LIVE_TESTS=1 vitest run tests/live",
"test:watch": "vitest src",
"typecheck": "tsc --noEmit",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test"
},
"dependencies": {
"zod": "4.3.6"
},
"devDependencies": {
"@types/node": "25.6.0",
"oxfmt": "0.46.0",
"oxlint": "1.61.0",
"tsup": "8.5.1",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.33.0"
}