Files
oki-podcast-reader/package.json
T

84 lines
2.4 KiB
JSON
Raw Normal View History

2023-02-21 22:09:10 +00:00
{
"name": "svelte-podcast",
2023-07-13 00:45:01 +01:00
"version": "0.8.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-07-10 21:44:55 +01:00
"build": "vite build",
2023-02-21 22:09:10 +00:00
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
2023-07-09 23:21:21 +01:00
"sync": "svelte-kit sync",
2023-02-21 22:09:10 +00:00
"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",
2023-07-09 23:21:21 +01:00
"lint": "yarn lint:prettier && yarn lint:eslint",
2023-02-26 15:40:03 +00:00
"format": "prettier --write --plugin-search-dir=. .",
2023-07-10 21:44:55 +01:00
"release": "changeset publish",
2023-02-26 15:40:03 +00:00
"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-07-10 21:44:55 +01:00
"@sveltejs/kit": ">=1.0.0",
"svelte": ">=3.0.0"
2023-02-21 22:09:10 +00:00
},
2023-02-23 23:06:59 +00:00
"dependencies": {
2023-07-09 23:21:21 +01:00
"@inqling/svelte-icons": "^3.3.2",
2023-03-06 15:25:34 +00:00
"clsx": "^1.2.1",
2023-07-10 21:44:55 +01:00
"esm-env": "^1.0.0",
2023-02-25 18:25:59 +00:00
"just-clamp": "^4.2.0",
2023-07-09 23:21:21 +01:00
"svelte-local-storage-store": "^0.5.0"
2023-02-23 23:06:59 +00:00
},
2023-02-21 22:09:10 +00:00
"devDependencies": {
2023-07-09 23:21:21 +01:00
"@changesets/cli": "^2.26.2",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.22.1",
"@sveltejs/package": "^2.1.0",
2023-07-09 22:18:06 +01:00
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
2023-07-09 23:21:21 +01:00
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
2023-07-09 22:18:06 +01:00
"autoprefixer": "^10.4.14",
2023-07-09 23:21:21 +01:00
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
2023-02-21 22:09:10 +00:00
"eslint-plugin-svelte3": "^4.0.0",
2023-07-09 23:21:21 +01:00
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.25",
2023-07-09 22:18:06 +01:00
"postcss-load-config": "^4.0.1",
2023-07-09 23:21:21 +01:00
"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",
2023-07-11 22:13:18 +01:00
"svelte-highlight": "^7.3.0",
"svelte-meta-tags": "^2.8.0",
2023-07-09 23:21:21 +01:00
"svelte-preprocess": "^5.0.4",
2023-07-09 22:18:06 +01:00
"svhighlight": "^0.7.1",
2023-07-09 23:21:21 +01:00
"tailwindcss": "^3.3.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.2"
2023-02-21 22:09:10 +00:00
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
2023-07-09 23:21:21 +01:00
"type": "module"
2023-02-21 22:09:10 +00:00
}