-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
100 lines (100 loc) · 2.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vue-mixable",
"description": "Turn Vue Mixins into Composables with a simple helper function",
"version": "0.3.1",
"license": "MIT",
"keywords": [
"Vue",
"composables",
"mixins",
"Vue plugin",
"migration",
"compat"
],
"author": {
"name": "Thorsten Lünborg",
"url": "https://github.com/linusborg"
},
"repository": {
"url": "https://github.com/LinusBorg/vue-mixable",
"type": "git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"src"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir dist",
"type-check": "tsc --noEmit -p tsconfig.vitest.json --composite false",
"test:unit": "vitest --environment jsdom",
"test:ci": "vitest --environment jsdom --run",
"lint:ci": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint": "pnpm lint:ci --fix",
"size": "pnpm size-limit",
"release": "release-it",
"update-hooks": "pnpm simple-git-hooks"
},
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{ts,js,cjs,vue}": "pnpm exec eslint --max-warnings 0"
},
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "2kB"
}
],
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-angular": "^17.2.0",
"@linusborg/eslint-config": "^0.3.0",
"@release-it/conventional-changelog": "^5.1.1",
"@size-limit/preset-small-lib": "^8.1.0",
"@types/jsdom": "^20.0.1",
"@types/node": "^16.18.3",
"@vitest/coverage-c8": "^0.25.0",
"@vue/test-utils": "^2.1.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.27.0",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"release-it": "^15.5.0",
"simple-git-hooks": "^2.8.1",
"size-limit": "^8.1.0",
"type-fest": "^3.2.0",
"typescript": "~4.7.4",
"vite": "^3.2.3",
"vitest": "^0.25.0",
"vue": "^3.2.41"
},
"peerDependencies": {
"vue": "^3.2"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
}
}