-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "@prefecthq/vue-compositions",
"private": false,
"version": "1.11.5",
"description": "A collection of reusable vue compositions.",
"main": "./dist/vue-compositions.umd.js",
"module": "./dist/vue-compositions.mjs",
"exports": {
".": {
"import": "./dist/vue-compositions.mjs",
"require": "./dist/vue-compositions.umd.js"
}
},
"files": [
"dist"
],
"types": "./dist/types/src/index.d.ts",
"scripts": {
"dev": "tsc -w & tsc-alias -w & vite build -w",
"build": "tsc && tsc-alias && vite build",
"test": "vitest",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"types": "vue-tsc --noEmit",
"changelog": "auto-changelog --package --commit-limit 0",
"version": "npm run changelog && git add CHANGELOG.md",
"release": "./vue-compositions-release"
},
"repository": {
"type": "git",
"url": "https://github.com/PrefectHQ/vue-compositions.git"
},
"keywords": [
"prefect",
"vue3",
"composition-api"
],
"author": "Craig Harshbarger",
"bugs": {
"url": "https://github.com/PrefectHQ/vue-compositions/issues"
},
"homepage": "https://github.com/PrefectHQ/vue-compositions#readme",
"devDependencies": {
"@prefecthq/eslint-config": "1.0.32",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.isequal": "^4.5.6",
"@vue/test-utils": "2.4.6",
"auto-changelog": "^2.3.0",
"eslint": "^8.5.0",
"lodash.isequal": "^4.5.0",
"ts-node": "^10.4.0",
"tsc-alias": "^1.7.1",
"typescript": "^5.0.3",
"vite": "^5.0.2",
"vitest": "^2.0.0",
"vue-tsc": "^2.0.7"
},
"peerDependencies": {
"lodash.debounce": "^4.0.8",
"vue": "^3.3.0",
"vue-router": "^4.0.15"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
},
"lodash.debounce": {
"optional": true
}
},
"dependencies": {
"@vue/devtools-api": "^6.1.4",
"jsdom": "^25.0.0"
}
}