-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 KB
/
package.json
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
{
"name": "ics-to-json",
"version": "2.0.0",
"description": "A tool to convert ICS calendars to JSON",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
"test": "vitest run",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"lint": "tsc",
"dev": "vitest",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"keywords": [
"ics",
"ics to json",
"ics-to-json",
"json"
],
"author": "Connor Wilson <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cwlsn/ics-to-json.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.10",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
}
}