-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 817 Bytes
/
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
{
"author": "Florian Imdahl <[email protected]>",
"bin": "dist/cli.js",
"dependencies": {
"commander": "13.1.0"
},
"description": "A TypeScript implementation of the NTP Client Protocol",
"devDependencies": {
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vitest": "3.0.5"
},
"engines": {
"node": ">= 18.0"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "ntpclient",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/ntpclient",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts",
"test": "vitest run"
},
"type": "module",
"version": "1.8.2"
}