-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.55 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
{
"name": "@twilic/fetch",
"version": "0.1.1",
"description": "Fetch helpers for Twilic binary request and response bodies.",
"keywords": [
"binary",
"fetch",
"twilic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/twilic/fetch.git"
},
"homepage": "https://github.com/twilic/fetch#readme",
"bugs": {
"url": "https://github.com/twilic/fetch/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint src tests",
"lint:fix": "oxlint --fix src tests",
"typecheck": "tsc --noEmit",
"test": "pnpm build && node --test --test-concurrency=1 \"tests/**/*.test.mjs\"",
"prepack": "pnpm build",
"release:check": "node ./scripts/verify-tag-version.mjs",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@twilic/core": "^3.0.0",
"@types/node": "^24.1.0",
"husky": "^9.1.7",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@twilic/core": "^3.0.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.18.1"
}