-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (72 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (72 loc) · 1.3 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"author": "Avaray",
"bin": {
"datr": "cli.mjs"
},
"description": "Dependency-free utility for generating YYYYMMDDHHMMSS timestamps. Perfect for logs, file naming, and automated workflows.",
"engines": {
"node": ">=14.16.0"
},
"exports": {
".": {
"import": "./module.mjs",
"types": "./module.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Avaray/datr.git"
},
"bugs": {
"url": "https://github.com/Avaray/datr/issues"
},
"files": [
"cli.mjs",
"module.d.ts",
"module.mjs"
],
"homepage": "https://github.com/Avaray/datr",
"keywords": [
"cli",
"date",
"datetime",
"day",
"days",
"dependency-free",
"devops",
"format",
"formatting",
"hour",
"hours",
"log",
"logging",
"millisecond",
"milliseconds",
"minute",
"minutes",
"module",
"month",
"months",
"second",
"seconds",
"sortable",
"time",
"timestamp",
"tool",
"typescript",
"year",
"years",
"zero-dependency"
],
"license": "MIT",
"main": "module.mjs",
"name": "datr",
"scripts": {
"ship": "bun run scripts/publish.mjs",
"test": "bun test"
},
"type": "module",
"types": "module.d.ts",
"version": "4.0.0"
}