svgl/package.json

80 lines
2.6 KiB
JSON
Raw Normal View History

2022-01-16 22:40:15 +08:00
{
"name": "svgl",
"author": "@pheralb_",
2024-01-24 19:01:11 +08:00
"version": "4.1.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",
"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",
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-03-09 20:43:55 +08:00
"@figma/plugin-typings": "1.88.0",
"@svelte-dev/pretty-code": "1.0.0",
"@upstash/ratelimit": "1.0.1",
"@upstash/redis": "1.28.4",
"bits-ui": "0.19.5",
2024-01-24 18:36:38 +08:00
"clsx": "2.1.0",
"downloadjs": "1.4.7",
2023-12-18 05:02:50 +08:00
"jszip": "3.10.1",
2024-03-09 20:43:55 +08:00
"lucide-svelte": "0.353.0",
"mode-watcher": "0.2.2",
"rehype-pretty-code": "0.13.0",
"shiki": "1.1.7",
"svelte-sonner": "0.3.19",
2024-01-24 18:36:38 +08:00
"tailwind-merge": "2.2.1"
},
"devDependencies": {
2024-01-24 18:36:38 +08:00
"@sveltejs/adapter-auto": "3.1.1",
2024-03-09 20:43:55 +08:00
"@sveltejs/kit": "2.5.3",
"@sveltejs/vite-plugin-svelte": "3.0.2",
"@tailwindcss/typography": "0.5.10",
2023-12-13 06:16:34 +08:00
"@types/downloadjs": "1.4.6",
2024-03-09 20:43:55 +08:00
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"autoprefixer": "10.4.18",
2024-01-24 18:36:38 +08:00
"concurrently": "8.2.2",
2024-03-09 20:43:55 +08:00
"esbuild": "0.20.1",
"eslint": "8.57.0",
2023-12-13 06:16:34 +08:00
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.35.1",
"mdsvex": "0.11.0",
2024-03-09 20:43:55 +08:00
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.2",
"prettier-plugin-tailwindcss": "0.5.12",
"svelte": "4.2.12",
"svelte-check": "3.6.6",
"sveltekit-search-params": "^2.1.1",
2024-01-24 18:36:38 +08:00
"tailwindcss": "3.4.1",
2023-09-12 16:50:26 +08:00
"tslib": "2.6.2",
2024-03-09 20:43:55 +08:00
"typescript": "5.4.2",
"vite": "5.1.5",
"vitest": "1.3.1"
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
}