svgl/package.json

77 lines
2.5 KiB
JSON
Raw Normal View History

2022-01-16 22:40:15 +08:00
{
"name": "svgl",
"author": "@pheralb_",
2023-12-13 06:16:34 +08:00
"version": "4.0.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": {
2023-12-23 15:43:54 +08:00
"@figma/plugin-typings": "^1.82.0",
"@upstash/ratelimit": "1.0.0",
"@upstash/redis": "1.25.2",
2023-12-18 05:02:50 +08:00
"bits-ui": "0.11.8",
2023-12-12 07:30:33 +08:00
"clsx": "2.0.0",
"downloadjs": "1.4.7",
2023-12-18 05:02:50 +08:00
"jszip": "3.10.1",
2023-12-17 01:07:22 +08:00
"lucide-svelte": "0.298.0",
"shiki": "0.14.7",
2023-12-13 06:16:34 +08:00
"svelte-sonner": "0.3.6",
2023-12-12 07:30:33 +08:00
"tailwind-merge": "2.1.0"
},
"devDependencies": {
2023-12-17 01:07:22 +08:00
"@sveltejs/adapter-auto": "3.0.0",
"@sveltejs/kit": "2.0.0",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tailwindcss/typography": "0.5.10",
2023-12-13 06:16:34 +08:00
"@types/downloadjs": "1.4.6",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
2023-09-26 21:59:07 +08:00
"autoprefixer": "10.4.16",
2023-12-23 15:43:54 +08:00
"concurrently": "^8.2.2",
"esbuild": "^0.19.10",
2023-12-17 01:07:22 +08:00
"eslint": "8.56.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",
2023-06-11 04:07:27 +08:00
"phosphor-svelte": "1.3.0",
2023-12-13 06:16:34 +08:00
"postcss": "8.4.32",
"prettier": "3.1.1",
"prettier-plugin-svelte": "3.1.2",
"prettier-plugin-tailwindcss": "0.5.9",
"svelte": "4.2.8",
"svelte-check": "3.6.2",
"tailwindcss": "3.3.6",
2023-09-12 16:50:26 +08:00
"tslib": "2.6.2",
2023-12-13 06:16:34 +08:00
"typescript": "5.3.3",
2023-12-17 01:07:22 +08:00
"vite": "5.0.10",
2023-12-13 06:16:34 +08:00
"vitest": "1.0.4"
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
}