-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
69 lines (69 loc) · 1.87 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
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": "datebook",
"version": "8.0.1",
"description": "Generates URLs and ICS file content for adding events to popular calendar apps.",
"keywords": [
"icalendar",
"google calendar",
"ics",
"yahoo calendar",
"outlook",
"calendar",
"event"
],
"repository": {
"type": "git",
"url": "https://github.com/jshor/datebook"
},
"author": "Josh Shor <jpshor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jshor/datebook/issues"
},
"homepage": "https://datebook.dev",
"main": "dist/datebook.min.mjs",
"module": "dist/datebook.min.mjs",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "jest",
"lint": "yarn eslint ./src",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"release": "standard-version -n"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vuepress/plugin-register-components": "^2.0.0-beta.53",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"eslint": "^8.28.0",
"file-saver": "^2.0.5",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"query-string": "^7.1.1",
"rollup": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": ">=3.0.0",
"vuepress": "^2.0.0-beta.53"
},
"resolutions": {
"vuepress-vite": "2.0.0-beta.53"
}
}