nuxt-callapp
Version:
A Nuxt module for callapp-lib
81 lines • 2.09 kB
JSON
{
"name": "nuxt-callapp",
"version": "4.1.1",
"description": "A Nuxt module for callapp-lib",
"author": {
"name": "xjccc",
"email": "546534045@qq.com",
"url": "https://github.com/xjccc"
},
"repository": {
"type": "git",
"url": "https://github.com/xjccc/nuxt-callapp"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"keywords": [
"nuxt-module",
"callapp",
"nuxt-callapp"
],
"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": "changelogen --release && npm run lint && npm run test && npm run prepack && npm publish && git push --follow-tags",
"echo:husky": "echo 'npx nano-staged' > .husky/pre-commit && echo 'npx --no-install commitlint --edit \"$1\"' > .husky/commit-msg",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"commit": "git-cz",
"test": "vitest run",
"test:watch": "vitest watch"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@nuxt/kit": "^4.3.1",
"callapp-lib": "^3.5.3",
"defu": "^6.1.4"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@nuxt/devtools": "^3.2.2",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@types/node": "^25.3.5",
"changelogen": "^0.6.2",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"nano-staged": "^0.9.0",
"nuxt": "^4.3.1",
"vitest": "^4.0.18"
},
"husky": {
"hooks": {
"pre-commit": "nano-staged"
}
},
"nano-staged": {
"*": "eslint . --fix"
}
}