-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.56 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
{
"name": "figma-borderless-export",
"version": "1.0.0",
"description": "Figma Plugin to export images without borders",
"license": "MIT",
"author": "kj455",
"scripts": {
"dev": "pnpm clean && run-p tsc:watch build:watch",
"build": "pnpm clean && run-p typecheck build:plugin build:ui",
"watch": "run-p tsc:plugin:watch tsc:ui:watch",
"test": "jest",
"test:watch": "jest --watch",
"vite": "vite",
"tsc:plugin": "tsc --noEmit -p plugin",
"tsc:ui": "tsc --noEmit -p ui",
"tsc:watch": "run-p 'tsc:plugin --watch --preserveWatchOutput' 'tsc:ui --watch --preserveWatchOutput'",
"build:plugin": "esbuild plugin/src/code.ts --bundle --outfile=dist/code.js --target=es6",
"build:ui": "vite build --minify esbuild --emptyOutDir=false",
"build:watch": "run-p 'build:plugin --watch' 'build:ui --watch'",
"clean": "rm -rf dist",
"typecheck": "run-p tsc:plugin tsc:ui"
},
"devDependencies": {
"@figma/plugin-typings": "1.55.1",
"@types/jest": "^29.2.3",
"@types/jszip": "^3.4.1",
"autoprefixer": "^10.4.13",
"canvas": "^2.10.2",
"esbuild": "^0.15.14",
"jest": "^29.3.1",
"jszip": "^3.10.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"typescript": "4.9.3",
"vite": "^3.2.4",
"vite-plugin-singlefile": "^0.13.1",
"vite-plugin-solid": "^2.5.0"
},
"dependencies": {
"fp-ts": "^2.16.1",
"solid-icons": "^1.0.4",
"solid-js": "^1.6.6"
}
}