Skip to content

Commit

Permalink
Prepare to publish new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
barinbritva committed Jul 14, 2024
1 parent 51acf5e commit 82cd6d5
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 57 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Implement reminder feature for `ics` files.

## [1.3.2] - 2024-04-16

### Fixed
Expand Down
116 changes: 59 additions & 57 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,60 @@
{
"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"
}
}
"name": "@barinbritva/add-to-calendar",
"version": "1.4.0-next.0",
"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"
}
}

0 comments on commit 82cd6d5

Please sign in to comment.