-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.59 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
64
65
{
"name": "zmodem-ts",
"version": "1.0.5",
"description": "A ts fork of FGasper/zmodemjs",
"author": "ZHAO Xudong <zxdong@gmail.com>",
"license": "MIT",
"main": "dist/zmodem.js",
"module": "esm/zmodem.mjs",
"types": "dist/zmodem.d.ts",
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:esm",
"build:commonjs": "tsc && npm run append-export",
"append-export": "echo \"\nmodule.exports = Zmodem;\" >> dist/zmodem.js",
"clean": "rm -rf dist esm",
"rename": "./bin/rename",
"build:esm": "tsc -p tsconfig.mjs.json && npm run rename",
"prepublishOnly": "npm run build",
"lint": "./node_modules/.bin/ts-standard --verbose",
"fix": "./node_modules/.bin/ts-standard --fix",
"beta": "npm publish --tag=beta",
"test": "jest"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.4.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-standard": "^12.0.2",
"typescript": "^5.1.3"
},
"files": [
"src",
"dist",
"esm",
"LICENSE",
"tsconfig.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zxdong262/zmodem-ts.git"
},
"keywords": [
"sync",
"js",
"zmodem"
],
"bugs": {
"url": "https://github.com/zxdong262/zmodem-ts/issues"
},
"homepage": "https://github.com/zxdong262/zmodem-ts#readme",
"standard": {
"sourceType": "module",
"ignore": [
"/dist",
"esm",
"temp",
"examples"
]
},
"dependencies": {
"crc-32": "^1.2.2"
}
}