-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.89 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
{
"name": "phosphor-figma",
"version": "2.1.1",
"license": "MIT",
"homepage": "https://phosphoricons.com",
"author": {
"name": "Tobias Fried",
"email": "[email protected]",
"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.97.0",
"@types/node": "^18.19.39",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"typescript": "^5.5.3",
"vite": "^5.3.6",
"vite-plugin-generate-file": "^0.1.1",
"vite-plugin-react-rich-svg": "^1.1.1",
"vite-plugin-singlefile": "^2.0.2"
},
"dependencies": {
"@phosphor-icons/core": "^2.1.1",
"@phosphor-icons/react": "^2.1.7",
"@types/tinycolor2": "^1.4.6",
"fuse.js": "^6.6.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.0",
"recoil": "^0.7.7",
"tinycolor2": "^1.6.0"
}
}