-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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": "bolt-figma",
"version": "0.0.28",
"repository": {
"type": "git",
"url": "https://github.com/hyperbrew/bolt-figma.git"
},
"homepage": "https://github.com/hyperbrew/bolt-figma",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode dev",
"devcode": "vite build --watch --mode dev --config vite.config.code.ts ",
"build": "vite build",
"buildcode": "vite build --config vite.config.code.ts",
"preview": "vite preview",
"hmr": "vite",
"zip": "cross-env MODE=zip vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"dep": "cross-env ACTION=dependencyCheck vite"
},
"devDependencies": {
"@figma/plugin-typings": "^1.94.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.0",
"@types/node": "^16.7.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-vue": "^5.0.4",
"cross-env": "^7.0.3",
"sass": "^1.75.0",
"svelte": "^4.2.17",
"svelte-check": "^3.8.0",
"svelte-preprocess": "^5.1.4",
"typescript": "^5.0.2",
"vite": "^5.2.12",
"vite-figma-plugin": "^0.0.24",
"vite-plugin-singlefile": "^0.13.5"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vue": "^3.4.27"
},
"files": [
"index.html",
"package.json",
"package.react.jsonc",
"package.svelte.jsonc",
"package.vue.jsonc",
"public/**/*",
"public-zip/**/*",
"README.md",
"src/**/*",
"src-code/**/*",
"shared/**/*",
".github/**/*",
"tsconfig.json",
"figma.config.ts",
"vite.config.ts",
"vite.config.code.ts",
"yarn.lock",
".npmrc",
".gitignore"
]
}