-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "temporalium",
"version": "0.1.0",
"description": "A TypeScript utility library for Temporal API date manipulations.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "vitest",
"build": "tsup",
"lint": "eslint src --ext .ts",
"format": "prettier --write .",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"engines": {
"node": ">=16"
},
"author": "Karl Eckberg <karl@eckberg.se>",
"repository": {
"type": "git",
"url": "https://github.com/eckberg/temporalium.git"
},
"bugs": {
"url": "https://github.com/eckberg/temporalium/issues"
},
"homepage": "https://github.com/eckberg/temporalium#readme",
"license": "MIT",
"keywords": [
"Temporal API",
"date utilities",
"typescript",
"date manipulation",
"javascript",
"calendar"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"temporal-polyfill": "^0.2.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
}
}