-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (78 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (78 loc) · 1.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "blender",
"version": "0.0.1",
"description": "",
"scripts": {
"dev": "vite",
"watch": "run-p watch:*",
"watch:ui": "pnpm build:ui --watch --mode=development",
"watch:code": "pnpm build:code --watch --mode=development",
"build": "run-s build:*",
"build:ui": "vite build -c ./vite.config.ui.ts",
"build:code": "vite build -c ./vite.config.code.ts",
"lint": "biome lint ./src",
"format": "biome check --fix && biome format --fix"
},
"author": "Philip Stapelfeldt <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ph1p/figma-blender.git"
},
"bugs": {
"url": "https://github.com/ph1p/figma-blender/issues"
},
"prettier": {
"singleQuote": true
},
"license": "ISC",
"dependencies": {
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.11.0",
"slugify": "^1.6.6",
"styled-components": "^6.1.19"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"@biomejs/biome": "2.3.10",
"@figma/plugin-typings": "^1.121.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/styled-components": "^5.1.36",
"@vitejs/plugin-react-swc": "^4.2.2",
"prettier": "^3.7.4",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "v5.3.16",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"vite": "8.0.0-beta.5",
"vite-plugin-singlefile": "^2.3.0"
},
"figma": {
"name": "Blender connect",
"id": "1095047912165244715",
"api": "1.0.0",
"main": "code.js",
"ui": "index.html",
"enableProposedApi": false,
"editorType": [
"figma"
],
"networkAccess": {
"allowedDomains": [
"ws://localhost:1410",
"https://fonts.googleapis.com",
"https://fonts.gstatic.com"
],
"reasoning": "Blender Server and Google Fonts access"
},
"documentAccess": "dynamic-page"
},
"resolutions": {
"bn.js": "5.2.0"
}
}