-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
67 lines (67 loc) · 1.47 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
{
"name": "vue-fuse-monorepo",
"author": "Shayne O'Sullivan <[email protected]>",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "yarn workspace vue-fuse build",
"demo": "yarn workspace demo dev",
"build:demo": "yarn workspace demo build",
"lint": "eslint --fix .",
"sync": "syncpack fix-mismatches && syncpack format"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/compiler-core": "^3.2.20",
"eslint": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^7.9.0",
"syncpack": "^5.8.15",
"typescript": "^4.4.3",
"vue": "^3.2.20",
"vue-eslint-parser": "^7.6.0",
"vue-tsc": "^0.3.0"
},
"homepage": "https://github.com/shayneo/vue-fuse",
"keywords": [
"component",
"fuse",
"fuse.js",
"fuzzy search",
"search",
"vue",
"vue search"
],
"packageManager": "[email protected]",
"repository": "shayneo/vue-fuse.git",
"syncpack": {
"sortAz": [
"contributors",
"dependencies",
"devDependencies",
"keywords",
"peerDependencies",
"scripts"
],
"sortFirst": [
"name",
"author",
"version",
"license",
"description",
"private",
"workspaces",
"scripts",
"main",
"module",
"bin",
"files",
"exports"
]
}
}