-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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": "@feelinglovelynow/get-relative-time",
"version": "1.1.2",
"description": "Simple function that recieves a Date object that is in the future or is in the past and gives back the relative time using Intl.RelativeTimeFormat('en', { numeric: 'auto' })",
"author": "https://github.com/feelinglovelynow?tab=repositories",
"license": "MIT",
"type": "module",
"types": "./dist/index.ts",
"exports": "./dist/index.js",
"files": [
"dist",
"tsc",
"src"
],
"keywords": [
"Intl",
"RelativeTimeFormat",
"moment",
"date",
"relative",
"ago",
"past",
"future",
"until",
"time"
],
"scripts": {
"watch": "pnpm tsc -w",
"build": "bash ./build.sh",
"cloud": "pnpm build && pnpm publish --access public .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"esbuild": "^0.19.8",
"jest": "^29.7.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feelinglovelynow/get-relative-time.git"
},
"bugs": {
"url": "https://github.com/feelinglovelynow/get-relative-time/issues"
}
}