-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "epoch-seconds",
"version": "4.0.1",
"type": "module",
"description": "Returns the amount of seconds passed since Unix epoch (1970 UTC).",
"keywords": [
"1970",
"date",
"date-now",
"epoch",
"gmt",
"linux",
"millis",
"milliseconds",
"now",
"posix",
"posix-epoch",
"second",
"seconds",
"time",
"timestamp",
"unix",
"unix-epoch",
"utc"
],
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"homepage": "https://github.com/jaid/epoch-seconds",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/epoch-seconds"
},
"exports": {
".": {
"import": "./src/index.ts"
}
},
"scripts": {
"build": "bun x/build.ts",
"build:production": "NODE_ENV=production bun run build",
"test-build": "NODE_ENV=test MAIN_MODULE=./dist/package/epoch-seconds/development/lib.js node --import tsx test/test.ts",
"test-build:production": "NODE_ENV=test MAIN_MODULE=./dist/package/epoch-seconds/production/lib.js node --import tsx test/test.ts",
"release": "fd --unrestricted --full-path 'dist[\\\\/]package[\\\\/][\\w-]+[\\\\/]production[\\\\/]package.json' --exec bun publish --cwd {//}",
"test": "bun test ./test"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/bun": "^1.3.9",
"browserslist-config-jaid-universal": "^3.0.0",
"bundle-declarations-webpack-plugin": "^6.0.0",
"dts-bundle-generator": "^9.5.1",
"eslint-config-jaid": "^23.0.0",
"forward-slash-path": "^0.3.0",
"publishimo": "^5.0.6",
"rollup-config-factory": "^0.4.2",
"tsconfig-jaid-node": "^10.0.0",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tsdown": "^0.20.3",
"type-fest": "^5.4.4",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"zeug": "^2.1.0"
}
}