-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.29 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
66
67
68
69
70
{
"name": "to-path-figma",
"version": "1.5.1",
"description": "plugin that puts things on paths in figma design tool",
"main": "code.js",
"type": "module",
"scripts": {
"build": "pnpm run build:ui && pnpm run build:main --minify",
"build:main": "esbuild src-plugin/code.ts --bundle --outfile=public/code.js",
"build:ui": "vite build --minify esbuild --emptyOutDir=false",
"build:watch": "concurrently -n widget,iframe \"pnpm run build:main --watch\" \"pnpm run build:ui --watch\"",
"dev": "concurrently -n tsc,build,vite 'pnpm:tsc:watch' 'pnpm:build:watch' 'vite'",
"coverage": "vitest run --coverage",
"test": "vitest",
"start": "sirv public",
"tsc": "pnpm run tsc:main && pnpm run tsc:ui",
"tsc:main": "tsc --noEmit -p src-plugin",
"tsc:ui": "tsc --noEmit -p src",
"tsc:watch": "concurrently -n widget,iframe \"pnpm run tsc:main --watch --preserveWatchOutput\" \"pnpm run tsc:ui s--watch --preserveWatchOutput\"",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codelastnight/to-path-figma.git"
},
"keywords": [
"plugin",
"figma",
"design",
"path",
"dang"
],
"author": "last night",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/codelastnight/to-path-figma/issues"
},
"homepage": "https://github.com/codelastnight/to-path-figma#readme",
"devDependencies": {
"@figma/plugin-typings": "^1.68.0",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tsconfig/svelte": "^4.0.1",
"@types/node": "^18.11.9",
"autoprefixer": "^10.4.14",
"caniuse-lite": "^1.0.30001507",
"concurrently": "^7.5.0",
"cssnano": "^6.0.1",
"esbuild": "^0.15.14",
"postcss": "^8.4.24",
"postcss-cli": "^10.1.0",
"postcss-load-config": "^4.0.1",
"postcss-preset-env": "^7.8.2",
"svelte-preprocess": "^5.0.4",
"svgo": "^3.0.2",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-singlefile": "^0.13.5",
"vite-plugin-svelte-svg": "^2.2.1",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.28.5"
},
"dependencies": {
"figma-plugin-ds-svelte": "^1.4.3",
"svelte": "^4.0.0",
"svg-pathdata": "^6.0.3",
"tailwindcss": "^3.2.4",
"transformation-matrix": "^2.14.0"
}
}