rrule-temporal-polyfill 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "rrule-temporal-polyfill",
3
+ "version": "1.3.0",
4
+ "description": "Fork of rrule-temporal with temporal-polyfill support. Recurrence rule (rrule) processing using Temporal PlainDate/PlainDateTime, with cross-timezone and cross-calendar rrule support",
5
+ "types": "dist/index.d.ts",
6
+ "main": "dist/index.js",
7
+ "type": "module",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ },
14
+ "./totext": {
15
+ "types": "./dist/totext.d.ts",
16
+ "import": "./dist/totext.js",
17
+ "require": "./dist/totext.cjs"
18
+ }
19
+ },
20
+ "scripts": {
21
+ "build": "rm -rf dist && tsup",
22
+ "test": "vitest run",
23
+ "coverage": "vitest run --coverage",
24
+ "format": "./node_modules/.bin/prettier --write 'src/**/*.ts'",
25
+ "prepare": "npm run build"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/ggaabe/rrule-temporal.git"
30
+ },
31
+ "keywords": [
32
+ "rrule",
33
+ "recurrence",
34
+ "temporal",
35
+ "date",
36
+ "time",
37
+ "plaindate",
38
+ "plaindatetime"
39
+ ],
40
+ "author": "ggaabe",
41
+ "license": "MIT",
42
+ "bugs": {
43
+ "url": "https://github.com/ggaabe/rrule-temporal/issues"
44
+ },
45
+ "homepage": "https://ggaabe.github.io/rrule-temporal/",
46
+ "files": [
47
+ "dist"
48
+ ],
49
+ "devDependencies": {
50
+ "@types/node": "^24.9.1",
51
+ "@vitest/coverage-v8": "^3.2.4",
52
+ "prettier": "^3.6.2",
53
+ "tsup": "^8.5.0",
54
+ "typescript": "^5.9.3",
55
+ "vitest": "^3.2.4"
56
+ },
57
+ "dependencies": {
58
+ "temporal-polyfill": "*"
59
+ }
60
+ }