-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
{
"name": "@cycletask/node",
"version": "1.0.0",
"description": "Official Node.js SDK for the CycleTask Mail Forwarding API",
"author": "CycleTask <support@task-cycle.com>",
"license": "MIT",
"homepage": "https://github.com/cycletask/node-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cycletask/node-sdk.git"
},
"bugs": {
"url": "https://github.com/cycletask/node-sdk/issues"
},
"keywords": [
"cycletask",
"email",
"mail",
"forwarding",
"alias",
"domain",
"api",
"sdk"
],
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/fix-cjs.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.3.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.0"
}
}