This repository was archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "@metapages/metaframe-javascript",
"version": "0.3.3",
"repository": {
"type": "git",
"url": "https://github.com/metapages/metaframe-javascript"
},
"files": [
"dist/**/*",
"src/lib/**/*"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"homepage": "https://github.com/metapages/metaframe-javascript/tree/main/docs#readme",
"scripts": {
"preinstall": "npm set progress=false && npm set audit false && npm config set fund false",
"start": "vite",
"prebuild": "./node_modules/typescript/bin/tsc --build",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@metapages/metaframe-hook": "^1.0.5",
"@metapages/metapage": "^0.8.6",
"@monaco-editor/react": "^4.2.2",
"framer-motion": "^4.1.17",
"preact": "^10.5.13",
"preact-router": "^3.2.1",
"react-spinners": "^0.11.0",
"zustand": "^3.5.10"
},
"devDependencies": {
"@preact/preset-vite": "^2.1.5",
"@types/node": "^12.20.10",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"typescript": "^4.1.5",
"vite": "^2.6.13"
},
"engines": {
"node": "14.x"
},
"browserslist": {
"production": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}