vremel
Version:
JavaScript date utility library for Temporal API
65 lines • 1.85 kB
JSON
{
"name": "vremel",
"version": "0.6.1",
"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.32.0",
"@js-temporal/polyfill": "^0.5.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^24.1.0",
"consola": "^3.4.2",
"date-fns": "^4.1.0",
"eslint": "^9.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"prettier": "3.6.2",
"temporal-polyfill": "0.3.0",
"temporal-spec": "^0.3.0",
"tinyexec": "^1.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "8.38.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@date-fns/utc": "^2.1.1"
},
"scripts": {
"build": "node script/build.js && node script/check-build.js",
"test": "POLYFILL=@js-temporal/polyfill vitest",
"test-ci": "POLYFILL=@js-temporal/polyfill vitest && POLYFILL=temporal-polyfill vitest",
"typecheck": "tsc",
"lint": "eslint . && prettier . --check --experimental-cli",
"repl": "tsx script/repl.ts",
"docs:generate": "deno doc --output=./_site --unstable-byonm --unstable-sloppy-imports --html src/index.ts src/duration/index.ts"
}
}