-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "@vt7/vue2-composables",
"version": "1.0.0",
"description": "Vue2 composables",
"license": "MIT",
"repository": "https://github.com/vuthanhbayit/vue2-composables",
"homepage": "https://github.com/vuthanhbayit/vue2-composables",
"bugs": {
"url": "https://github.com/vuthanhbayit/vue2-composables/issues"
},
"author": {
"name": "Vu Thanh Bay",
"url": "https://github.com/vuthanhbayit"
},
"keywords": [
"vue2",
"composables"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsup",
"lint": "eslint \"./**/*.{js,ts,vue}\"",
"pretty": "prettier --write \"./**/*.{js,json,html,scss,ts,vue,yml}\"",
"prepublishOnly": "yarn build",
"ci": "yarn pretty && yarn lint && yarn build",
"release": "yarn lint && standard-version"
},
"sideEffects": false,
"dependencies": {
"@vt7/utils": "^1.2.0",
"@vt7/vueuse": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"@vue/compiler-sfc": "3.2.19",
"@vue/composition-api": "^1.2.2",
"babel-core": "7.0.0-bridge.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"standard-version": "^9.3.1",
"tsup": "^5.3.0",
"typescript": "4.4.3",
"vue": "^2.6.14"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
}
}