-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 798 Bytes
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
{
"name": "@rabbx/ms",
"version": "1.0.0",
"description": "Ultrafast formatter and parser for time durations. 20-30x faster than the original `ms` package, zero dependencies, 450 bytes gzip.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports":{
".":{
"types": "dist/index.d.ts",
"import": "dist/index.js",
"default": "dist/index.js"
}
},
"files": ["dist","README.md","license.md"],
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"typescript": "^5.0.0"
},
"homepage":"https://github.com/rabbxdev/ms",
"repository":{
"type":"git",
"url":"https://github.com/rabbxdev/ms"
},
"license":"MIT",
"author":"rabbxdev team"
}