-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 KB
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.5.0",
"description": "Fetches the current time from NTP servers and returns offset information",
"main": "dist/index.js",
"dependencies": {
"ntp-packet-parser": "^0.5.0"
},
"devDependencies": {
"@types/node": "^18 || ^20 || ^22",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"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": "^18 || ^20 || ^22"
}
}