Files
oki-podcast-reader/package.json
T

99 lines
2.8 KiB
JSON
Raw Normal View History

2023-02-21 22:09:10 +00:00
{
"name": "svelte-podcast",
2023-02-25 18:36:25 +00:00
"version": "0.5.0",
2023-02-21 22:09:10 +00:00
"license": "MIT",
2023-02-23 14:31:06 +00:00
"author": "Ollie Taylor",
"homepage": "https://github.com/OllieJT/svelte-podcast/blob/main/README.md",
"bugs": {
"url": "https://github.com/OllieJT/svelte-podcast/issues"
},
"repository": {
"type": "git",
2023-07-09 22:18:06 +01:00
"url": "https://github.com/OllieJT/svelte-podcast.git"
2023-02-23 14:31:06 +00:00
},
2023-02-21 22:09:10 +00:00
"scripts": {
"dev": "vite dev",
2023-02-26 15:40:03 +00:00
"build": "vite build && pnpm package",
2023-02-21 22:09:10 +00:00
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
2023-03-06 15:25:34 +00:00
"lint:prettier": "prettier --check --plugin-search-dir=. .",
"lint:eslint": "TIMING=1 eslint . --ext .ts,.tsx,.svelte --cache",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
2023-02-26 15:40:03 +00:00
"format": "prettier --write --plugin-search-dir=. .",
"release": "pnpm package && changeset publish",
"ts": "tsc --pretty --noImplicitAny --noEmit"
2023-02-21 22:09:10 +00:00
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
2023-03-06 15:25:34 +00:00
"svelte": "^3.55.1"
2023-02-21 22:09:10 +00:00
},
2023-02-23 23:06:59 +00:00
"dependencies": {
2023-07-09 22:18:06 +01:00
"@inqling/svelte-icons": "^3.1.0",
2023-03-06 15:25:34 +00:00
"clsx": "^1.2.1",
2023-02-25 18:25:59 +00:00
"just-clamp": "^4.2.0",
"svelte-local-storage-store": "^0.4.0"
2023-02-23 23:06:59 +00:00
},
2023-02-21 22:09:10 +00:00
"devDependencies": {
2023-02-23 13:36:30 +00:00
"@changesets/cli": "^2.26.0",
2023-03-06 15:25:34 +00:00
"@playwright/test": "^1.31.2",
2023-07-09 22:18:06 +01:00
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.11.0",
2023-03-06 15:25:34 +00:00
"@sveltejs/package": "^2.0.2",
2023-07-09 22:18:06 +01:00
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
2023-02-21 22:09:10 +00:00
"eslint-plugin-svelte3": "^4.0.0",
2023-07-09 22:18:06 +01:00
"highlight.js": "^11.7.0",
"postcss": "^8.4.21",
"postcss-load-config": "^4.0.1",
2023-03-06 15:25:34 +00:00
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
2023-07-09 22:18:06 +01:00
"prettier-plugin-tailwindcss": "^0.2.4",
2023-03-06 15:25:34 +00:00
"publint": "^0.1.10",
2023-07-09 22:18:06 +01:00
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.0.1",
"rehype-highlight": "^6.0.0",
"rehype-sanitize": "^5.0.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.4",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"svelte": "^3.56.0",
"svelte-check": "^3.1.2",
"svelte-preprocess": "^4.10.7",
"svhighlight": "^0.7.1",
"tailwindcss": "^3.2.7",
2023-03-06 15:25:34 +00:00
"tslib": "^2.5.0",
"typescript": "^4.9.5",
2023-07-09 22:18:06 +01:00
"unified": "^10.1.2",
2023-03-06 15:25:34 +00:00
"vite": "^4.1.4"
2023-02-21 22:09:10 +00:00
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
2023-02-26 15:40:03 +00:00
"type": "module",
"packageManager": "pnpm@7.28.0",
"engines": {
"pnpm": "^7.0.0"
}
2023-02-21 22:09:10 +00:00
}