-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "@kyleupton/node-rsync",
"version": "0.0.8",
"description": "Rsync wrapper API for server-side javascript runtimes",
"keywords": [
"rsync",
"wrapper"
],
"repository": {
"type": "git",
"url": "https://github.com/kyleaupton/node-rsync.git"
},
"type": "module",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.esm.json && tsc --build tsconfig.cjs.json && node scripts/distPackageJson.mjs",
"publish": "npm publish --access public",
"deploy": "yarn build && yarn publish"
},
"author": "Kyle Upton <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"tsx": "^3.13.0",
"typescript": "*"
}
}