-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.33 KB
/
package.json
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.3.1",
"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.2.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"talkback": "^3.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vitest": "^0.26.2"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
}
}