-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.49 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
{
"name": "devicepeek",
"version": "1.1.0",
"type": "module",
"description": "See any website or app as an iPhone and a laptop, side by side, right in your browser. Add it to a project and that project shows up on its own.",
"author": "Fredler Gracia Pierre-Louis",
"license": "MIT",
"homepage": "https://fredler21.github.io/devicepeek/",
"repository": {
"type": "git",
"url": "https://github.com/Fredler21/devicepeek.git"
},
"bugs": {
"url": "https://github.com/Fredler21/devicepeek/issues"
},
"keywords": [
"responsive",
"preview",
"device-frame",
"iframe",
"iphone",
"laptop",
"mobile-preview",
"developer-tools",
"vite-plugin",
"typescript",
"vite"
],
"engines": {
"node": ">=18"
},
"bin": {
"devicepeek": "bin/devicepeek.mjs"
},
"main": "./plugin/index.mjs",
"types": "./plugin/index.d.ts",
"exports": {
".": {
"types": "./plugin/index.d.ts",
"default": "./plugin/index.mjs"
},
"./vite": {
"types": "./plugin/vite.d.ts",
"default": "./plugin/vite.mjs"
},
"./agent": "./plugin/agent.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"plugin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "node bin/devicepeek.mjs",
"prepare": "npm run build"
},
"devDependencies": {
"typescript": "^7.0.2",
"vite": "^8.1.5"
}
}