mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-21 21:23:06 -05:00
a4de28390d
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
65 lines
2.3 KiB
JSON
65 lines
2.3 KiB
JSON
{
|
|
"name": "penpot-exporter",
|
|
"version": "0.13.0",
|
|
"description": "Penpot exporter",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "concurrently -n widget,iframe 'npm:build:main' 'npm:build:ui -- --mode development'",
|
|
"build:prod": "concurrently -n widget,iframe 'npm:build:main' 'npm:build:ui -- --mode production'",
|
|
"build:main": "esbuild plugin-src/code.ts --bundle --outfile=dist/code.js --target=es2016 --minify",
|
|
"build:ui": "vite build",
|
|
"build:watch": "concurrently -n widget,iframe 'npm:build:main -- --watch' 'npm:build:ui -- --watch --mode development'",
|
|
"lint": "concurrently 'npm:lint:*'",
|
|
"lint:eslint": "eslint .",
|
|
"lint:stylelint": "stylelint ui-src/**.css",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:tsc-ui": "tsc -p ui-src/tsconfig.json --noEmit --pretty false",
|
|
"lint:tsc-plugin": "tsc -p plugin-src/tsconfig.json --noEmit --pretty false",
|
|
"fix-lint": "concurrently 'npm:fix-lint:*'",
|
|
"fix-lint:eslint": "eslint . --fix",
|
|
"fix-lint:stylelint": "stylelint ui-src/**.css --fix",
|
|
"fix-lint:prettier": "prettier --write ."
|
|
},
|
|
"author": "Kaleidos",
|
|
"license": "MPL2.0",
|
|
"dependencies": {
|
|
"@create-figma-plugin/ui": "^3.2",
|
|
"@sentry/react": "^8.40",
|
|
"@sentry/vite-plugin": "^2.22",
|
|
"base64-js": "^1.5",
|
|
"classnames": "^2.5",
|
|
"lru-cache": "^11.0",
|
|
"mixpanel-figma": "^2.0",
|
|
"preact": "^10.25",
|
|
"react-hook-form": "^7.52",
|
|
"romans": "^2.0",
|
|
"slugify": "^1.6",
|
|
"svg-path-parser": "^1.1",
|
|
"use-resize-observer": "^9.1"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5",
|
|
"@changesets/cli": "^2.27",
|
|
"@figma/eslint-plugin-figma-plugins": "^0.15",
|
|
"@figma/plugin-typings": "^1.103",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3",
|
|
"@types/svg-path-parser": "^1.1",
|
|
"@typescript-eslint/eslint-plugin": "^7.18",
|
|
"@typescript-eslint/parser": "^7.18",
|
|
"@vitejs/plugin-react-swc": "^3.7",
|
|
"concurrently": "^8.2",
|
|
"esbuild": "^0.24",
|
|
"eslint": "^8.57",
|
|
"eslint-config-prettier": "^9.1",
|
|
"eslint-plugin-prettier": "^5.1",
|
|
"eslint-plugin-react": "^7.34",
|
|
"prettier": "^3.2",
|
|
"stylelint": "^16.6",
|
|
"stylelint-config-standard": "^36.0",
|
|
"typescript": "^5.7",
|
|
"vite": "^5.4",
|
|
"vite-plugin-singlefile": "^2.0",
|
|
"vite-plugin-svgr": "^4.3",
|
|
"vite-tsconfig-paths": "^4.3"
|
|
}
|
|
}
|