Files
oki-podcast-reader/package.json
T
Ollie Taylor b1165a817e Version Packages (#49)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## svelte-podcast@0.9.0

### Minor Changes

-   528457f: Restructures package exports
-   528457f: - improved export structure
    -   simplify audio methods
    -   improve typescript types
-   bba2421: Improve example components
-   bba2421: improve progress component style overrides
-   f42a00f: removes autoplay as it doesn't behave as users would expect

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-29 20:13:05 +01:00

84 lines
2.4 KiB
JSON

{
"name": "svelte-podcast",
"version": "0.9.0",
"license": "MIT",
"author": "Ollie Taylor (https://olliejt.com)",
"homepage": "https://github.com/OllieJT/svelte-podcast/blob/main/README.md",
"bugs": {
"url": "https://github.com/OllieJT/svelte-podcast/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/OllieJT/svelte-podcast.git"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"sync": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint:prettier": "prettier --check --plugin-search-dir=. .",
"lint:eslint": "TIMING=1 eslint . --ext .ts,.tsx,.svelte --cache",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "prettier --write --plugin-search-dir=. .",
"release": "changeset publish",
"ts": "tsc --pretty --noImplicitAny --noEmit"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"@sveltejs/kit": ">=1.0.0",
"svelte": ">=3.0.0"
},
"dependencies": {
"@inqling/svelte-icons": "^3.3.2",
"clsx": "^1.2.1",
"esm-env": "^1.0.0",
"just-clamp": "^4.2.0",
"svelte-local-storage-store": "^0.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.22.1",
"@sveltejs/package": "^2.1.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.25",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"publint": "^0.1.16",
"svelte": "^4.0.5",
"svelte-check": "^3.4.5",
"svelte-highlight": "^7.3.0",
"svelte-meta-tags": "^2.8.0",
"svelte-preprocess": "^5.0.4",
"svhighlight": "^0.7.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.2"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}