-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.mustache
More file actions
32 lines (32 loc) · 902 Bytes
/
package.mustache
File metadata and controls
32 lines (32 loc) · 902 Bytes
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
{
"name": "{{npmName}}",
"version": "{{npmVersion}}",
"description": "A Node library for the MX Platform API.",
"author": "MX",
"keywords": [
"mx",
"mx.com",
"mx platform api",
"{{npmName}}"
],
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/",
"prepare": "npm run build"
},
"_comment": "IMPORTANT: Keep these dependency versions in sync with security updates. If package.json is manually updated for security fixes, this template MUST also be updated to prevent automated generation from overwriting the fixes.",
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5"
}{{#npmRepository}},{{/npmRepository}}
{{#npmRepository}}
"publishConfig": {
"registry": "{{npmRepository}}"
}
{{/npmRepository}}
}