-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.33 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
{
"name": "@mailerlite/mailerlite-nodejs",
"version": "1.7.0",
"description": "MailerLite Node.js SDK",
"main": "./dist/index.js",
"module": "/dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsup",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailerlite/mailerlite-nodejs.git"
},
"keywords": [
"mailerlite",
"typescript",
"javascript",
"esm",
"cjs",
"nodejs",
"commonjs",
"ecmascript"
],
"author": {
"name": "MailerLite",
"url": "https://www.mailerlite.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mailerlite/mailerlite-nodejs/issues"
},
"homepage": "https://github.com/mailerlite/mailerlite-nodejs#readme",
"dependencies": {
"axios": "^1.15.0"
},
"devDependencies": {
"dotenv": "^17.4.2",
"talkback": "^4.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
}
}