-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "internet-speed-checker",
"version": "0.2.1",
"description": "Check internet upload and download speed in real-time",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.mjs",
"exports": {
".": {
"require": "./dist/esm/index.mjs",
"import": "./dist/index.js"
}
},
"scripts": {
"start": "npm run prompt:module",
"prompt:module": "node -e \"require('./scripts/module-prompt')\"",
"build": "npm run build:commonjs && npm run build:esm && npm run rename:files",
"build:commonjs": "tsc -m commonjs --outDir dist/src",
"build:esm": "tsc -m esnext --outDir dist/esm",
"rename:files": "node scripts/rename-files.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegrtnx/internet-speed-check.git"
},
"keywords": [
"internet-speed-checker",
"upload",
"speed",
"download",
"speed"
],
"author": "thegrtnx",
"license": "MIT",
"bugs": {
"url": "https://github.com/thegrtnx/internet-speed-check/issues"
},
"homepage": "https://speed.thegrtnx.com.ng",
"dependencies": {
"fs-extra": "^11.2.0",
"readline-sync": "^1.4.10"
},
"peerDependencies": {
"typescript": "^5.3.3"
}
}