-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "ntp-time-sync",
"version": "0.4.1",
"description": "Fetches the current time from NTP servers and returns offset information",
"main": "dist/index.js",
"dependencies": {
"ntp-packet-parser": "^0.4.0"
},
"devDependencies": {
"@types/node": "^14 || ^16 || ^18 || ^20",
"prettier": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^5.0.2"
},
"scripts": {
"prepublishOnly": "yarn prettier:lint && yarn build",
"build": "tsc",
"prettier": "prettier --write src/**/*.ts",
"prettier:lint": "prettier --list-different src/**/*.ts"
},
"keywords": [
"ntp",
"clock",
"sync",
"parser",
"udp",
"time"
],
"author": "Laurens Stötzel",
"repository": {
"type": "git",
"url": "https://github.com/buffcode/ntp-time-sync.git"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"license": "GPL-3.0",
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"engines": {
"node": "^14 || ^16 || ^18 || ^20"
}
}