svgl/package.json

84 lines
2.9 KiB
JSON
Raw Normal View History

2022-01-16 22:40:15 +08:00
{
2024-04-09 22:40:55 +08:00
"name": "@pheralb/svgl",
"author": "@pheralb_",
2024-04-21 03:27:08 +08:00
"version": "4.2.0",
"description": "A beautiful library with SVG logos.",
"private": true,
"license": "MIT",
"type": "module",
"keywords": [
"svgs",
"logos",
"images",
"library"
],
"scripts": {
"dev": "vite dev",
2023-03-17 21:59:21 +08:00
"host": "vite dev --host",
2024-01-02 17:54:56 +08:00
"build": "pnpm run prebuild && vite build",
2024-01-02 17:58:24 +08:00
"prebuild": "cd ./check-size && pnpm install && pnpm run start",
2024-04-21 03:27:08 +08:00
"onlybuild": "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",
"check:size": "cd ./check-size && npm run start",
2024-04-21 03:27:08 +08:00
"check:links": " lychee --base . ./src/data/svgs.ts --cache --max-cache-age 3d . --include 'https://cdn.svgl.app'",
2023-12-28 01:11:39 +08:00
"fix:viewbox": "cd ./fix-viewbox && npm run start",
2023-04-14 19:37:28 +08: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": {
2024-04-29 17:07:12 +08:00
"@figma/plugin-typings": "1.92.0",
2024-03-09 20:43:55 +08:00
"@svelte-dev/pretty-code": "1.0.0",
2024-04-10 06:05:19 +08:00
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
2024-04-29 17:07:12 +08:00
"@upstash/ratelimit": "1.1.3",
2024-04-21 03:27:08 +08:00
"@upstash/redis": "1.30.0",
2024-04-29 17:07:12 +08:00
"bits-ui": "0.21.5",
"clsx": "2.1.1",
"downloadjs": "1.4.7",
2023-12-18 05:02:50 +08:00
"jszip": "3.10.1",
2024-04-29 17:07:12 +08:00
"lucide-svelte": "0.376.1",
2024-04-09 22:40:55 +08:00
"mode-watcher": "0.3.0",
"rehype-pretty-code": "0.13.1",
2024-04-21 03:27:08 +08:00
"shiki": "1.3.0",
"svelte-sonner": "0.3.22",
2024-04-29 17:07:12 +08:00
"tailwind-merge": "2.3.0"
},
"devDependencies": {
2024-04-09 22:40:55 +08:00
"@sveltejs/adapter-auto": "3.2.0",
2024-04-29 17:07:12 +08:00
"@sveltejs/kit": "2.5.7",
2024-04-21 03:27:08 +08:00
"@sveltejs/vite-plugin-svelte": "3.1.0",
2024-04-29 17:07:12 +08:00
"@tailwindcss/typography": "0.5.13",
2023-12-13 06:16:34 +08:00
"@types/downloadjs": "1.4.6",
2024-04-29 17:07:12 +08:00
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
2024-04-09 22:40:55 +08:00
"autoprefixer": "10.4.19",
2024-01-24 18:36:38 +08:00
"concurrently": "8.2.2",
2024-04-09 22:40:55 +08:00
"esbuild": "0.20.2",
2024-03-09 20:43:55 +08:00
"eslint": "8.57.0",
2023-12-13 06:16:34 +08:00
"eslint-config-prettier": "9.1.0",
2024-04-29 17:07:12 +08:00
"eslint-plugin-svelte": "2.38.0",
"mdsvex": "0.11.0",
2024-04-09 22:40:55 +08:00
"postcss": "8.4.38",
2024-03-09 20:43:55 +08:00
"prettier": "3.2.5",
2024-04-21 03:27:08 +08:00
"prettier-plugin-svelte": "3.2.3",
"prettier-plugin-tailwindcss": "0.5.14",
"svelte": "4.2.15",
2024-04-29 17:07:12 +08:00
"svelte-check": "3.7.0",
2024-04-09 22:40:55 +08:00
"sveltekit-search-params": "2.1.2",
"tailwindcss": "3.4.3",
2023-09-12 16:50:26 +08:00
"tslib": "2.6.2",
2024-04-21 03:27:08 +08:00
"typescript": "5.4.5",
2024-04-29 17:07:12 +08:00
"vite": "5.2.10",
"vitest": "1.5.2"
2023-12-23 15:43:54 +08:00
},
"config": {
2023-12-28 20:02:41 +08:00
"siteURL": "https://svgl.app?figma=1"
}
2022-01-16 22:40:15 +08:00
}