svgl/package.json

92 lines
3.1 KiB
JSON
Raw Normal View History

2022-01-16 14:40:15 +00:00
{
2024-04-09 15:40:55 +01:00
"name": "@pheralb/svgl",
"author": "@pheralb_",
2025-01-31 01:19:05 +00:00
"version": "5.0.0",
"description": "A beautiful library with SVG logos.",
"private": true,
"license": "MIT",
"type": "module",
"keywords": [
"svgs",
"logos",
"images",
"library"
],
2024-09-23 10:13:10 +01:00
"config": {
"siteURL": "https://svgl.app?figma=1"
},
"scripts": {
"dev": "vite dev",
2023-03-17 13:59:21 +00:00
"host": "vite dev --host",
2024-01-02 09:54:56 +00:00
"build": "pnpm run prebuild && vite build",
2024-05-10 19:29:32 +01:00
"prebuild": "cd ./utils/check-size && pnpm install && pnpm run start",
"vite:build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
2024-05-10 19:22:14 +01:00
"check:size": "cd ./utils/check-size && npm run start",
"check:links": " lychee --base . ./src/data/svgs.ts --cache --max-cache-age 3d . --include 'https://svgl.app'",
"fix:viewbox": "cd ./utils/fix-viewbox && npm run start",
2023-04-14 11:37:28 +00:00
"test": "vitest run",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
2023-12-23 15:43:54 +08:00
"format": "prettier --plugin-search-dir . --write .",
"dev:figma": "concurrently -n plugin,svelte 'npm run build:plugin -- --watch --define:SITE_URL=\\\"http://localhost:5173?figma=1\\\"' 'npm run dev'",
"build:plugin": "esbuild src/figma/code.ts --bundle --target=es6 --loader:.svg=text --outfile=src/figma/dist/code.js",
"build:figma": "concurrently -n plugin,svelte 'npm run build:plugin -- --define:SITE_URL=\\\"$npm_package_config_siteURL\\\"' 'npm run build'"
},
"dependencies": {
2025-01-31 01:19:05 +00:00
"@figma/plugin-typings": "1.106.0",
2024-03-09 12:43:55 +00:00
"@svelte-dev/pretty-code": "1.0.0",
2024-04-09 23:05:19 +01:00
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
2025-01-31 01:19:05 +00:00
"@upstash/ratelimit": "2.0.5",
"@upstash/redis": "1.34.3",
2024-04-29 10:07:12 +01:00
"clsx": "2.1.1",
"downloadjs": "1.4.7",
"fuse.js": "^7.0.0",
2023-12-17 21:02:50 +00:00
"jszip": "3.10.1",
2025-01-31 01:19:05 +00:00
"lucide-svelte": "0.474.0",
"mode-watcher": "0.5.1",
"rehype-autolink-headings": "7.1.0",
2024-09-23 10:13:10 +01:00
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0",
2025-01-31 01:19:05 +00:00
"shiki": "1.29.2",
2024-09-23 10:13:10 +01:00
"svelte-sonner": "0.3.28",
2025-01-31 01:19:05 +00:00
"tailwind-merge": "3.0.1",
"tailwind-variants": "0.3.1"
},
"devDependencies": {
2025-01-31 01:19:05 +00:00
"@eslint/compat": "1.2.5",
"@eslint/js": "9.19.0",
"@sveltejs/adapter-auto": "4.0.0",
"@sveltejs/adapter-node": "5.2.12",
"@sveltejs/kit": "2.16.1",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tailwindcss/typography": "0.5.16",
2023-12-12 22:16:34 +00:00
"@types/downloadjs": "1.4.6",
2025-01-31 01:19:05 +00:00
"@types/node": "22.12.0",
2024-08-15 13:00:10 +01:00
"autoprefixer": "10.4.20",
2025-01-31 01:19:05 +00:00
"bits-ui": "0.22.0",
"concurrently": "9.1.2",
"esbuild": "0.24.2",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-svelte": "2.46.1",
"globals": "15.14.0",
2024-09-23 10:13:10 +01:00
"mdsvex": "0.12.3",
2025-01-31 01:19:05 +00:00
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-svelte": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.11",
"svelte": "5.19.6",
"svelte-check": "4.1.4",
2024-08-15 13:00:10 +01:00
"sveltekit-search-params": "3.0.0",
2025-01-31 01:19:05 +00:00
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vite": "6.0.11",
"vitest": "3.0.4"
}
2022-01-16 14:40:15 +00:00
}