-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.9 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "temporal-kit",
"version": "0.2.7",
"description": "A modern, functional utility library for the Temporal API - experiment with Temporal today.",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./polyfilled": {
"types": "./dist/polyfilled.d.ts",
"import": "./dist/polyfilled.js",
"default": "./dist/polyfilled.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"ci": "node --run typecheck && node --run lint && node --run test:coverage && node --run build",
"prepublishOnly": "node --run ci",
"release": "node --run ci && commit-and-tag-version",
"release:minor": "node --run ci && commit-and-tag-version --release-as minor",
"release:major": "node --run ci && commit-and-tag-version --release-as major",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "node --run typecheck && npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,json}": [
"biome check --write"
]
},
"keywords": [
"temporal",
"temporal-api",
"temporal-polyfill",
"date",
"time",
"datetime",
"timezone",
"date-utilities",
"date-helpers",
"functional",
"immutable",
"tree-shakable",
"typescript",
"startof",
"endof"
],
"author": "KristjanESPERANTO",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KristjanESPERANTO/temporal-kit.git"
},
"bugs": {
"url": "https://github.com/KristjanESPERANTO/temporal-kit/issues"
},
"homepage": "https://kristjanesperanto.github.io/temporal-kit/",
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"commit-and-tag-version": "^12.6.1",
"lint-staged": "^16.3.3",
"simple-git-hooks": "^2.13.1",
"temporal-polyfill": "^0.3.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"temporal-polyfill": "^0.3.0"
},
"peerDependenciesMeta": {
"temporal-polyfill": {
"optional": true
}
},
"engines": {
"node": ">=24"
}
}