-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2 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
{
"name": "scheduling-sdk",
"version": "0.5.2",
"description": "Brought to you by Recal - A TypeScript SDK for scheduling functionality",
"author": "Recal",
"license": "MIT",
"contributors": ["tkoehlerlg"],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": ["dist"],
"scripts": {
"build": "bun run build:types && bun run build:esm && bun run build:cjs",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist && cp dist/index.d.ts dist/index.d.cts",
"build:esm": "NODE_ENV=production bun build src/index.ts --outdir dist --target node --format esm",
"build:cjs": "NODE_ENV=production bun build src/index.ts --outfile dist/index.cjs --target node --format cjs",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
"typecheck": "tsc --noEmit",
"format": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"lint:fix:all": "biome lint --write --unsafe",
"check": "biome check",
"check:fix": "biome check --write",
"prepublishOnly": "NODE_ENV=production bun run build && bun run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recal-dev/scheduling-sdk.git"
},
"bugs": {
"url": "https://github.com/recal-dev/scheduling-sdk/issues"
},
"homepage": "https://github.com/recal-dev/scheduling-sdk#readme",
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "^2.1.2"
},
"peerDependencies": {
"typescript": "^5"
},
"keywords": [
"scheduling",
"calendar",
"appointment",
"booking",
"availability",
"time-slots",
"timezone",
"recal",
"sdk",
"typescript",
"schedule",
"time-management",
"date-time",
"slots",
"busy-time"
]
}