generated from productdevbookcom/vue-ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.28 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
84
85
86
{
"name": "vue-bundle-template",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@8.13.0",
"description": "add description",
"author": "add author",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/vue-bundle-template",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/vue-bundle-template.git"
},
"bugs": "https://github.com/productdevbookcom/vue-bundle-template/issues",
"keywords": [
"add keywords"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": "./dist/utils.mjs"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"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": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"prepare": "npx simple-git-hooks"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"dependencies": {
"@nuxt/kit": "^3.11.1"
},
"devDependencies": {
"@antfu/eslint-config": "2.10.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.1",
"@nuxt/test-utils": "^3.12.0",
"@types/node": "^20.11.30",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"happy-dom": "^14.3.8",
"json-summary": "^1.3.0",
"lint-staged": "^15.2.2",
"playwright-core": "^1.42.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"unconfig": "^0.3.11",
"unplugin-vue-macros": "^2.7.13",
"vite": "^5.2.6",
"vitest": "^1.4.0",
"vue": "^3.4.21"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}