nuxt-redmine
Version:
Redmine REST API integration for Nuxt
59 lines • 1.68 kB
JSON
{
"name": "nuxt-redmine",
"version": "0.0.5",
"description": "Redmine REST API integration for Nuxt",
"keywords": [
"redmine",
"nuxt",
"nuxt-api",
"nuxt-module",
"issue-tracking",
"project-management"
],
"author": "Vsevolod Girenko <vs.girenko@mail.ru>",
"repository": "https://github.com/sauromates/nuxt-redmine",
"bugs": "https://github.com/sauromates/nuxt-redmine/issues",
"license": "MIT",
"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:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run format && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"format": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.8.2",
"defu": "^6.1.3"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.4",
"@nuxt/schema": "^3.8.2",
"@nuxt/test-utils": "^3.8.1",
"@types/node": "^20.10.3",
"changelogen": "^0.5.5",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"nuxt": "^3.8.2",
"prettier": "^3.1.1",
"vitest": "^0.33.0"
}
}