forked from jkbrzt/rrule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.77 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
{
"name": "@offload-project/rrule",
"version": "2.9.0",
"description": "JavaScript library for working with recurrence rules for calendar dates.",
"homepage": "http://offload-project.github.io/rrule/",
"license": "BSD-3-Clause",
"keywords": [
"dates",
"recurrences",
"calendar",
"icalendar",
"rfc"
],
"author": "Shavonn Brown, Jakub Roztocil, Lars Schöning, and David Golightly",
"type": "module",
"main": "./dist/rrule.cjs",
"module": "./dist/rrule.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/rrule.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/rrule.cjs"
}
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/offload-project/rrule.git"
},
"scripts": {
"dev": "vite",
"lint": "biome check .",
"check": "biome check --write .",
"format": "biome format --write .",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest **/*.test.ts",
"change": "changeset",
"prepack": "bun run build",
"publish-package": "changeset version && changeset publish"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com",
"@offload-project:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/cli": "^2.29.8",
"@microsoft/api-extractor": "^7.57.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"jest": "^30.2.0",
"mockdate": "^3.0.5",
"terser": "^5.46.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^7.3.1"
}
}