-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "@packfleet/datetime",
"repository": "https://github.com/packfleet/datetime",
"author": "Packfleet <hello@packfleet.com>",
"description": "A package for working with dates and times.",
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": ["dist/**"],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"lint": "biome check --error-on-warnings --write",
"lint:ci": "biome check --error-on-warnings",
"test": "vitest watch",
"test:no-watch": "pnpm test -- --no-watch",
"test:ci": "vitest run",
"test:coverage": "vitest --coverage",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^3.0.8",
"tsup": "^5.10.1",
"typescript": "^4.5.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@js-temporal/polyfill": "^0.4.4",
"ordinal": "^1.0.3"
}
}