2022-10-11 08:55:08 -05:00
|
|
|
{
|
|
|
|
"name": "penpot-exporter",
|
2024-12-20 02:04:49 -05:00
|
|
|
"version": "0.13.0",
|
2022-10-11 08:55:08 -05:00
|
|
|
"description": "Penpot exporter",
|
2024-04-08 04:43:30 -05:00
|
|
|
"type": "module",
|
2022-10-11 08:55:08 -05:00
|
|
|
"scripts": {
|
2024-10-28 05:22:50 -05:00
|
|
|
"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'",
|
2024-05-13 03:12:58 -05:00
|
|
|
"build:main": "esbuild plugin-src/code.ts --bundle --outfile=dist/code.js --target=es2016 --minify",
|
|
|
|
"build:ui": "vite build",
|
2024-11-14 09:42:45 -05:00
|
|
|
"build:watch": "concurrently -n widget,iframe 'npm:build:main -- --watch' 'npm:build:ui -- --watch --mode development'",
|
2024-05-13 03:12:58 -05:00
|
|
|
"lint": "concurrently 'npm:lint:*'",
|
2024-04-08 04:43:30 -05:00
|
|
|
"lint:eslint": "eslint .",
|
2024-04-12 11:52:19 -05:00
|
|
|
"lint:stylelint": "stylelint ui-src/**.css",
|
2024-04-08 04:43:30 -05:00
|
|
|
"lint:prettier": "prettier --check .",
|
2024-04-12 11:52:19 -05:00
|
|
|
"lint:tsc-ui": "tsc -p ui-src/tsconfig.json --noEmit --pretty false",
|
|
|
|
"lint:tsc-plugin": "tsc -p plugin-src/tsconfig.json --noEmit --pretty false",
|
2024-05-13 03:12:58 -05:00
|
|
|
"fix-lint": "concurrently 'npm:fix-lint:*'",
|
2024-04-08 04:43:30 -05:00
|
|
|
"fix-lint:eslint": "eslint . --fix",
|
2024-04-12 11:52:19 -05:00
|
|
|
"fix-lint:stylelint": "stylelint ui-src/**.css --fix",
|
2024-04-08 04:43:30 -05:00
|
|
|
"fix-lint:prettier": "prettier --write ."
|
2022-10-11 08:55:08 -05:00
|
|
|
},
|
|
|
|
"author": "Kaleidos",
|
|
|
|
"license": "MPL2.0",
|
2024-04-08 04:43:30 -05:00
|
|
|
"dependencies": {
|
2024-05-09 05:56:45 -05:00
|
|
|
"@create-figma-plugin/ui": "^3.2",
|
2024-12-04 02:06:58 -05:00
|
|
|
"@sentry/react": "^8.40",
|
2024-10-28 05:22:50 -05:00
|
|
|
"@sentry/vite-plugin": "^2.22",
|
2024-06-04 01:02:46 -05:00
|
|
|
"base64-js": "^1.5",
|
2024-05-09 05:56:45 -05:00
|
|
|
"classnames": "^2.5",
|
2024-09-02 03:51:30 -05:00
|
|
|
"lru-cache": "^11.0",
|
2024-10-28 05:22:50 -05:00
|
|
|
"mixpanel-figma": "^2.0",
|
2024-12-04 02:06:58 -05:00
|
|
|
"preact": "^10.25",
|
2024-09-02 03:51:30 -05:00
|
|
|
"react-hook-form": "^7.52",
|
2024-05-07 05:18:15 -05:00
|
|
|
"romans": "^2.0",
|
2024-04-16 09:08:39 -05:00
|
|
|
"slugify": "^1.6",
|
2024-05-13 03:08:26 -05:00
|
|
|
"svg-path-parser": "^1.1",
|
|
|
|
"use-resize-observer": "^9.1"
|
2024-04-08 04:43:30 -05:00
|
|
|
},
|
2022-10-11 08:55:08 -05:00
|
|
|
"devDependencies": {
|
2024-04-19 06:21:32 -05:00
|
|
|
"@changesets/changelog-github": "^0.5",
|
|
|
|
"@changesets/cli": "^2.27",
|
2024-04-12 09:52:36 -05:00
|
|
|
"@figma/eslint-plugin-figma-plugins": "^0.15",
|
2024-12-04 02:06:58 -05:00
|
|
|
"@figma/plugin-typings": "^1.103",
|
2024-04-08 04:43:30 -05:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3",
|
2024-04-17 08:58:52 -05:00
|
|
|
"@types/svg-path-parser": "^1.1",
|
2024-09-02 03:51:30 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.18",
|
|
|
|
"@typescript-eslint/parser": "^7.18",
|
|
|
|
"@vitejs/plugin-react-swc": "^3.7",
|
2024-04-12 11:52:19 -05:00
|
|
|
"concurrently": "^8.2",
|
2024-12-04 02:06:58 -05:00
|
|
|
"esbuild": "^0.24",
|
2024-04-12 09:52:36 -05:00
|
|
|
"eslint": "^8.57",
|
2024-04-08 04:43:30 -05:00
|
|
|
"eslint-config-prettier": "^9.1",
|
|
|
|
"eslint-plugin-prettier": "^5.1",
|
|
|
|
"eslint-plugin-react": "^7.34",
|
|
|
|
"prettier": "^3.2",
|
2024-06-13 03:25:01 -05:00
|
|
|
"stylelint": "^16.6",
|
2024-04-08 04:43:30 -05:00
|
|
|
"stylelint-config-standard": "^36.0",
|
2024-12-04 02:06:58 -05:00
|
|
|
"typescript": "^5.7",
|
|
|
|
"vite": "^5.4",
|
2024-04-12 11:52:19 -05:00
|
|
|
"vite-plugin-singlefile": "^2.0",
|
2024-12-04 02:06:58 -05:00
|
|
|
"vite-plugin-svgr": "^4.3",
|
2024-04-12 11:52:19 -05:00
|
|
|
"vite-tsconfig-paths": "^4.3"
|
2022-10-11 08:55:08 -05:00
|
|
|
}
|
|
|
|
}
|