-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vremel",
"version": "0.3.4",
"description": "JavaScript date utility library for Temporal API",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./duration": {
"import": "./dist/esm/duration/index.js",
"require": "./dist/cjs/duration/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/_test/**/*",
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "node script/before-build.js && tsc -p tsconfig.build.json && swc src -d dist/cjs --strip-leading-paths && node script/after-build.js",
"test": "vitest",
"typecheck": "tsc",
"lint": "eslint . && prettier . --check",
"repl": "vite-node script/repl.ts",
"docs:generate": "deno doc --output=./_site --unstable-byonm --unstable-sloppy-imports --html src/index.ts src/duration/index.ts"
},
"homepage": "https://github.com/fabon-f/vremel#readme",
"bugs": {
"url": "https://github.com/fabon-f/vremel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fabon-f/vremel.git"
},
"keywords": [
"Temporal"
],
"author": "fabon <[email protected]> (https://www.fabon.info/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@js-temporal/polyfill": "^0.4.4",
"@swc/cli": "0.5.2",
"@swc/core": "^1.10.3",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.2",
"consola": "^3.3.3",
"date-fns": "^4.1.0",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"prettier": "3.4.2",
"temporal-polyfill": "^0.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "8.18.2",
"vite-node": "^2.1.8",
"vitest": "^2.1.8"
},
"dependencies": {
"@date-fns/utc": "^2.1.0"
},
"packageManager": "[email protected]"
}