-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "@barinbritva/add-to-calendar",
"version": "1.3.2",
"keywords": [
"event",
"add",
"calendar",
"google",
"outlook",
"office365",
"yahoo",
"ics",
"ical",
"icalendar"
],
"main": "./dist/index.js",
"files": ["/dist"],
"types": "./dist/__types__",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"engineStrict": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"build:dev": "tsc --project ./tsconfig-dev.json -w",
"test": "vitest run",
"test:dev": "vitest watch",
"test:coverage": "vitest run --coverage",
"typedoc": "typedoc --out docs src/index.ts",
"prettier:lint": "prettier --check \"./src/**/*.{ts,tsx,json}\"",
"prettier:fix": "prettier --write \"./src/**/*.{ts,tsx,json}\""
},
"author": {
"name": "Barin Britva",
"email": "[email protected]",
"url": "https://barinbritva.ru"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/sinon": "^10.0.14",
"@vitest/coverage-c8": "^0.29.8",
"lefthook": "^1.3.8",
"prettier": "^2.8.7",
"sinon": "^15.0.4",
"ts-node": "^9.1.1",
"typedoc": "^0.23.28",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"volta": {
"node": "18.19.1",
"pnpm": "8.15.4"
}
}