-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 KB
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
{
"name": "phosphor-figma",
"version": "2.1.3",
"license": "MIT",
"homepage": "https://phosphoricons.com",
"author": {
"name": "Tobias Fried",
"email": "friedtm@gmail.com",
"url": "https://tobiasfried.com"
},
"description": "A flexible icon family for interfaces, diagrams, presentations — whatever, really.",
"keywords": [
"phosphor",
"icons",
"svg",
"design",
"interface",
"UI",
"UX",
"figma",
"figma-plugin"
],
"repository": "github:phosphor-icons/phosphor-figma",
"private": false,
"type": "module",
"scripts": {
"start": "run-s dev",
"dev": "run-s watch",
"dev:ui-only": "vite -c ./vite.config.ui.ts",
"watch": "run-p watch:*",
"watch:ui": "npm run build:ui -- --watch --mode=development",
"watch:plugin": "npm run build:plugin -- --watch --mode=development",
"clean": "rimraf dist/*",
"types": "run-s types:*",
"types:src": "tsc",
"types:node": "tsc -P tsconfig.node.json",
"build": "run-s build:*",
"prebuild": "run-s types clean",
"build:ui": "vite build -c ./vite.config.ui.ts",
"build:plugin": "vite build -c ./vite.config.plugin.ts"
},
"devDependencies": {
"@figma/plugin-typings": "^1.124.0",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-react": "^6.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vite": "^8.0.3",
"vite-plugin-generate-file": "^0.2.0",
"vite-plugin-singlefile": "^2.3.2"
},
"dependencies": {
"@phosphor-icons/core": "^2.1.1",
"@phosphor-icons/react": "^2.1.10",
"fuse.js": "^7.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-use": "^17.6.0",
"tinycolor2": "^1.6.0",
"zustand": "^5.0.12"
}
}