-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nuxt-nust",
"version": "1.0.14",
"description": "Nestjs-like api controllers for your Nuxt backend",
"repository": {
"type": "git",
"url": "https://github.com/sweetscript/nuxt-nust.git"
},
"homepage": "https://sweetscript.github.io/nuxt-nust",
"author": {
"name": "Majid Kuhail - Sweetscript Ltd",
"email": "majid@sweetscript.com",
"url": "sweetscript.com"
},
"bugs": {
"url": "https://github.com/sweetscript/nuxt-nust/issues",
"email": "majid@sweetscript.com"
},
"keywords": [
"nuxt",
"nestjs"
],
"license": "MIT",
"type": "module",
"bin": {
"nust": "./bin/cli.js"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"bin"
],
"scripts": {
"prepack": "npm run build:cli && nuxt-module-build build",
"build:cli": "node build-cli.js",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"format:check": "prettier ./src ./playground --check",
"format": "prettier ./src ./playground --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"docs:dev": "npm run --prefix docs docs:dev",
"docs:build": "npm run --prefix docs docs:build"
},
"dependencies": {
"@nuxt/kit": "^3.16.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"commander": "^12.0.0",
"deepmerge": "^4.3.1",
"h3": "^1.15.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@nuxt/devtools": "^2.2.1",
"@nuxt/eslint-config": "^1.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.16.0",
"@nuxt/test-utils": "^3.17.2",
"@types/node": "latest",
"changelogen": "^0.6.1",
"esbuild": "^0.20.1",
"eslint": "^9.22.0",
"nuxt": "^3.16.0",
"prettier": "^3.5.3",
"typescript": "~5.8.2",
"vitest": "^3.0.8",
"vue-tsc": "^2.2.8"
}
}