tabby-tftp 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +73 -78
package/package.json
CHANGED
|
@@ -1,78 +1,73 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tabby-tftp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "TFTP client and read-only firmware server for Tabby terminal",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tabby-plugin",
|
|
7
|
-
"tabby",
|
|
8
|
-
"tftp",
|
|
9
|
-
"tftp-server",
|
|
10
|
-
"firmware",
|
|
11
|
-
"serial",
|
|
12
|
-
"bootloader",
|
|
13
|
-
"u-boot",
|
|
14
|
-
"embedded",
|
|
15
|
-
"file-transfer"
|
|
16
|
-
],
|
|
17
|
-
"main": "dist/index.js",
|
|
18
|
-
"typings": "dist/index.d.ts",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/lijzijie/tabby-tftp.git"
|
|
22
|
-
},
|
|
23
|
-
"homepage": "https://github.com/lijzijie/tabby-tftp#readme",
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://github.com/lijzijie/tabby-tftp/issues"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist",
|
|
29
|
-
"README.md",
|
|
30
|
-
"README.zh-CN.md",
|
|
31
|
-
"CHANGELOG.md",
|
|
32
|
-
"CONTRIBUTING.md",
|
|
33
|
-
"SECURITY.md",
|
|
34
|
-
"docs/PUBLISHING.md",
|
|
35
|
-
"LICENSE"
|
|
36
|
-
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "node scripts/build.js",
|
|
39
|
-
"watch": "node scripts/build.js --watch",
|
|
40
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
41
|
-
"test": "tsc -p tsconfig.test.json && node --test tests/protocol.test.js tests/client.test.js tests/server.test.js",
|
|
42
|
-
"verify": "npm run typecheck && npm test && npm run build",
|
|
43
|
-
"pack:plugin": "npm pack",
|
|
44
|
-
"prepublishOnly": "npm run verify"
|
|
45
|
-
},
|
|
46
|
-
"author": "linzi",
|
|
47
|
-
"license": "MIT",
|
|
48
|
-
"publishConfig": {
|
|
49
|
-
"access": "public",
|
|
50
|
-
"registry": "https://registry.npmjs.org"
|
|
51
|
-
},
|
|
52
|
-
"engines": {
|
|
53
|
-
"node": ">=18"
|
|
54
|
-
},
|
|
55
|
-
"peerDependencies": {
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"@
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"typescript": "~4.9.5",
|
|
75
|
-
"webpack": "^5.89.0",
|
|
76
|
-
"webpack-cli": "^5.1.4"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tabby-tftp",
|
|
3
|
+
"version": "0.2.4",
|
|
4
|
+
"description": "TFTP client and read-only firmware server for Tabby terminal",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tabby-plugin",
|
|
7
|
+
"tabby",
|
|
8
|
+
"tftp",
|
|
9
|
+
"tftp-server",
|
|
10
|
+
"firmware",
|
|
11
|
+
"serial",
|
|
12
|
+
"bootloader",
|
|
13
|
+
"u-boot",
|
|
14
|
+
"embedded",
|
|
15
|
+
"file-transfer"
|
|
16
|
+
],
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"typings": "dist/index.d.ts",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/lijzijie/tabby-tftp.git"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/lijzijie/tabby-tftp#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/lijzijie/tabby-tftp/issues"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"CHANGELOG.md",
|
|
32
|
+
"CONTRIBUTING.md",
|
|
33
|
+
"SECURITY.md",
|
|
34
|
+
"docs/PUBLISHING.md",
|
|
35
|
+
"LICENSE"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "node scripts/build.js",
|
|
39
|
+
"watch": "node scripts/build.js --watch",
|
|
40
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
41
|
+
"test": "tsc -p tsconfig.test.json && node --test tests/protocol.test.js tests/client.test.js tests/server.test.js",
|
|
42
|
+
"verify": "npm run typecheck && npm test && npm run build",
|
|
43
|
+
"pack:plugin": "npm pack",
|
|
44
|
+
"prepublishOnly": "npm run verify"
|
|
45
|
+
},
|
|
46
|
+
"author": "linzi",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public",
|
|
50
|
+
"registry": "https://registry.npmjs.org"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"tabby-core": ">=1.0.156"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@angular/animations": "^15.2.10",
|
|
60
|
+
"@angular/common": "^15.2.10",
|
|
61
|
+
"@angular/core": "^15.2.10",
|
|
62
|
+
"@angular/forms": "^15.2.10",
|
|
63
|
+
"@angular/localize": "^15.2.10",
|
|
64
|
+
"@ng-bootstrap/ng-bootstrap": "^14.2.0",
|
|
65
|
+
"@types/node": "^20.10.0",
|
|
66
|
+
"rxjs": "^7.8.1",
|
|
67
|
+
"tabby-core": "^1.0.156",
|
|
68
|
+
"ts-loader": "^9.5.4",
|
|
69
|
+
"typescript": "~4.9.5",
|
|
70
|
+
"webpack": "^5.89.0",
|
|
71
|
+
"webpack-cli": "^5.1.4"
|
|
72
|
+
}
|
|
73
|
+
}
|