-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 KB
/
package.json
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
{
"name": "@gabortorma/mwm-nuxt-module-template",
"type": "module",
"version": "0.2.6",
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"description": "My new Nuxt module",
"license": "MIT",
"repository": {
"type": "github",
"url": "git+ssh://git@github.com/GaborTorma/mwm-nuxt-module-template.git"
},
"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"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"build": "nuxi build playground",
"prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"prerelease": "nr lint && nr test:types && nr test",
"release": "dotenv release-it"
},
"dependencies": {
"@nuxt/kit": "^3.13.2"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@gabortorma/mwm": "^0.8.12",
"@gabortorma/nuxt-eslint-layer": "^0.2.1",
"@nuxt/devtools": "^1.5.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.2",
"@types/node": "^22.7.2",
"dotenv-cli": "^7.4.2",
"nuxi": "^3.14.0",
"nuxt": "^3.13.2",
"release-it": "^17.6.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}