-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
116 lines (116 loc) · 3.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vue-condition-watcher",
"version": "2.0.0-beta.3",
"description": "Data fetching with Vue Composition API. Power of conditions to easily control and sync to the URL query string.",
"main": "./core/dist/index.js",
"module": "./core/dist/index.esm.js",
"types": "./core/dist/core/index.d.ts",
"packageManager": "[email protected]",
"files": [
"core/dist/**",
"core/package.json",
"package.json",
"_internal/dist/**",
"_internal/package.json"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./core/dist/index.mjs",
"module": "./core/dist/index.esm.js",
"require": "./core/dist/index.js",
"types": "./core/dist/core/index.d.ts"
},
"./_internal": {
"import": "./_internal/dist/index.mjs",
"module": "./_internal/dist/index.esm.js",
"require": "./_internal/dist/index.js",
"types": "./_internal/dist/_internal/index.d.ts"
}
},
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"watch": "turbo run watch --parallel",
"types:check": "turbo run types:check",
"format": "prettier --write ./**/*.ts",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "pnpm lint --fix",
"test": "pnpm build && pnpm test:3",
"test:2": "vue-demi-switch 2 vue2 && vitest run",
"test:3": "vue-demi-switch 3 && vitest run",
"test:all": "pnpm format && pnpm build && pnpm test:3 && pnpm test:2 && vue-demi-switch 3",
"prepublishOnly": "pnpm format && pnpm clean && pnpm build",
"publish-beta": "pnpm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runkids/vue-condition-watcher.git"
},
"keywords": [
"vue",
"conditions",
"watcher",
"vue-hooks",
"composition-api",
"vue-composable",
"composable",
"fetch-data"
],
"author": "Willy Hong",
"license": "MIT",
"bugs": {
"url": "https://github.com/runkids/vue-condition-watcher/issues"
},
"homepage": "https://github.com/runkids/vue-condition-watcher#readme",
"husky": {
"hooks": {
"pre-commit": "pnpm types:check && lint-staged"
}
},
"lint-staged": {
"*.{ts, js}": [
"pnpm lint:fix",
"pnpm format",
"git add"
]
},
"engines": {
"node": ">=14",
"pnpm": "7"
},
"devDependencies": {
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vue/composition-api": "^1.7.0",
"@vue/test-utils": "^2.0.2",
"bunchee": "^1.9.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"husky": "2.4.1",
"jsdom": "^20.0.0",
"lint-staged": "8.2.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"turbo": "^1.3.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vitest": "^0.18.0",
"vue": "^3.2.45",
"vue-condition-watcher": "workspace:*",
"vue2": "npm:[email protected]"
},
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}