-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "nuxt-callapp",
"version": "1.5.1",
"description": "A Nuxt module for callapp-lib",
"author": {
"name": "xjccc",
"email": "[email protected]",
"url": "https://github.com/xjccc"
},
"repository": {
"type": "git",
"url": "https://github.com/xjccc/nuxt-callapp"
},
"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",
"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 lint-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": "^3.14.1592",
"callapp-lib": "^3.5.3",
"defu": "^6.1.4"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@nuxt/devtools": "^1.6.4",
"@nuxt/eslint-config": "^0.7.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@types/node": "^22.10.2",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"cz-git": "^1.11.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"nuxt": "^3.14.1592",
"vitest": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "eslint . --fix"
}
}