-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nuxt-module-feed",
"version": "1.1.4",
"description": "Nuxt 3 feed module enables everyone to have RSS, Atom and JSON",
"repository": "https://github.com/tresko/nuxt-module-feed",
"license": "MIT",
"contributors": [
"Miha Sedej <sedej.miha@gmail.com>"
],
"type": "module",
"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",
"dev:generate": "nuxi generate playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:typecheck": "nuxi typecheck 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 .",
"test": "vitest run",
"test:watch": "vitest watch",
"prepare": "husky",
"stackblitz": "cd .stackblitz && pnpm i && pnpm run dev"
},
"dependencies": {
"@nuxt/kit": "3.10.3",
"feed": "4.2.2"
},
"devDependencies": {
"@commitlint/cli": "19.1.0",
"@commitlint/config-conventional": "19.1.0",
"@nuxt/eslint-config": "0.2.0",
"@nuxt/module-builder": "0.5.5",
"@nuxt/schema": "3.10.3",
"@nuxt/test-utils": "3.11.0",
"changelogen": "0.5.5",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"nuxt": "3.10.3",
"vitest": "1.3.1"
},
"lint-staged": {
"*.+(js|ts|vue)": [
"eslint --fix",
"git add"
]
},
"stackblitz": {
"installDependencies": false,
"startCommand": "pnpm run stackblitz"
},
"resolutions": {
"@nuxt/kit": ">=3.2.3",
"@nuxt/schema": "3.10.3"
}
}