-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "nuxt-layers-utils",
"description": "A collection of utilities to work with Nuxt layers",
"version": "0.3.1",
"author": "Dave Stewart",
"files": [
"dist/*"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --ignore-watch src/**/*.spec.ts --format esm --dts && tsc --emitDeclarationOnly",
"test": "vitest --reporter=verbose",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext .ts",
"release": "vitest run && npm run build"
},
"dependencies": {
"pathe": "^1.1.2"
},
"peerDependencies": {
"nuxt": ">=3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/nuxt-layers-utils.git"
},
"keywords": [
"nuxt",
"layers"
],
"license": "ISC"
}