-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
47
48
49
50
51
52
53
54
55
{
"name": "user-time",
"version": "2.0.1",
"description": "Turns fuzzy user time strings into a formatted time string",
"main": "./lib/userTime.cjs",
"module": "./lib/userTime.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/userTime.d.ts",
"default": "./lib/userTime.js"
},
"require": {
"types": "./lib/userTime.d.cts",
"default": "./lib/userTime.cjs"
}
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsup src/userTime.ts --clean --dts --out-dir lib/ --format cjs,esm && fix-tsup-cjs --cwd lib",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrmedd/user-time.git"
},
"keywords": [
"time",
"input",
"user",
"fuzzy",
"match",
"normalize",
"date",
"datetime"
],
"author": "jrmedd",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/jrmedd/user-time/issues"
},
"homepage": "https://github.com/jrmedd/user-time#readme",
"devDependencies": {
"chai": "^5.1.1",
"fix-tsup-cjs": "^1.2.0",
"mocha": "^8.4.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}