-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
65 lines (65 loc) · 2.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "penpot-exporter",
"version": "0.12.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'",
"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.34",
"@sentry/vite-plugin": "^2.22",
"base64-js": "^1.5",
"classnames": "^2.5",
"lru-cache": "^11.0",
"mixpanel-figma": "^2.0",
"preact": "^10.23",
"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.100",
"@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.23",
"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.4",
"vite": "^5.2",
"vite-plugin-singlefile": "^2.0",
"vite-plugin-svgr": "^4.2",
"vite-tsconfig-paths": "^4.3"
}
}