-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "simple-figma-ui",
"version": "1.0.0",
"description": "Figma plugin to easily import prebuilt ui components",
"main": "dist/index.js",
"scripts": {
"build": "yarn build:ui && yarn build:plugin",
"dev": "run-s build:plugin dev:ui",
"build:plugin": "tsup",
"dev:ui": "vite",
"build:ui": "tsc && vite build",
"preview:ui": "vite preview",
"format": "prettier --write \"./src/**/*.{js,ts,jsx,tsx,html,css}\" \"./*.{js,ts}\""
},
"author": "skdhg",
"license": "MIT",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/simple-figma-ui.git"
},
"keywords": [
"figma",
"ui",
"plugin",
"component",
"api",
"library",
"design"
],
"bugs": {
"url": "https://github.com/neplextech/simple-figma-ui/issues"
},
"homepage": "https://github.com/neplextech/simple-figma-ui#readme",
"devDependencies": {
"@figma/plugin-typings": "^1.57.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-singlefile": "^0.13.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}