-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 829 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 829 Bytes
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
{
"name": "@browser-echo/nuxt",
"version": "1.1.0",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/instructa/browser-echo.git",
"directory": "packages/nuxt"
},
"author": {
"name": "Kevin Kern",
"url": "https://github.com/regenrek"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/module.d.ts",
"default": "./dist/module.mjs"
}
},
"peerDependencies": {
"@nuxt/kit": ">=3.11.0"
},
"dependencies": {
"@browser-echo/core": "workspace:*"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild -w",
"clean": "rimraf dist || true",
"test": "vitest run packages/nuxt"
},
"devDependencies": {
"h3": "^1.15.5",
"typescript": "^5.5.4",
"unbuild": "^2.0.0"
}
}