vremel
Version:
JavaScript date utility library for Temporal API
62 lines • 1.71 kB
JSON
{
"name": "vremel",
"version": "0.6.0",
"description": "JavaScript date utility library for Temporal API",
"type": "module",
"exports": {
".": "./dist/index.js",
"./duration": "./dist/duration/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/_test/**/*",
"dist",
"CHANGELOG.md"
],
"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 <syobon.hinata.public@gmail.com> (https://www.fabon.info/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.23.0",
"@js-temporal/polyfill": "^0.5.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.13.14",
"consola": "^3.4.2",
"date-fns": "^4.1.0",
"eslint": "^9.23.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"prettier": "3.5.3",
"temporal-polyfill": "0.3.0-beta.1",
"typescript": "^5.8.2",
"typescript-eslint": "8.28.0",
"vite-node": "^3.0.9",
"vitest": "^3.0.9"
},
"dependencies": {
"@date-fns/utc": "^2.1.0"
},
"scripts": {
"build": "node script/before-build.js && tsc -p tsconfig.build.json && 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"
}
}