-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.37 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
{
"name": "petname-generator-figma",
"version": "1.0.0",
"description": "This plugin generates Ubuntu style pet names for each selected text node in Figma.",
"license": "GPL-3.0",
"scripts": {
"dev": "vite",
"build:figma-ui": "vite build --mode figma-ui",
"build:figma-plugin": "vite build --mode figma-plugin",
"build:penpot-ui": "vite build --mode penpot-ui",
"build:penpot-plugin": "vite build --mode penpot-plugin",
"build:figma": "npm run build:figma-ui && npm run build:figma-plugin",
"build:penpot": "npm run build:penpot-ui && npm run build:penpot-plugin",
"build": "npm run build:figma && npm run build:penpot",
"preview": "vite preview"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"@penpot/plugin-styles": "^1.1.0",
"@penpot/plugin-types": "^1.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.4",
"vanilla-framework": "^4.20.1",
"vite-plugin-singlefile": "^2.1.0"
},
"devDependencies": {
"@figma/plugin-typings": "^1.107.0-beta.1",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vite": "^6.0.11"
}
}