-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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
{
"name": "vue-json-search",
"version": "0.2.1",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"typings": "./dist/src/search.d.ts",
"repository": "https://github.com/Uninen/vue-json-search",
"author": "Ville Säävuori <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite --config vite.site.config.ts",
"sitebuild": "vite --config vite.site.config.ts build",
"build": "vite build",
"preview": "vite --config vite.site.config.ts build && vite --config vite.site.config.ts preview",
"start": "yarn dev & wait-on tcp:3000 -v",
"test": "playwright test",
"test:ci": "playwright test"
},
"dependencies": {
"fuse.js": "^6.6.2"
},
"devDependencies": {
"@playwright/experimental-ct-vue": "1.23.1",
"@playwright/test": "1.23.1",
"@tailwindcss/typography": "0.5.2",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"@vitejs/plugin-vue": "2.3.3",
"@vue/eslint-config-typescript": "11.0.0",
"@vue/test-utils": "2.0.2",
"autoprefixer": "10.4.7",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-vue": "9.1.1",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-nesting": "10.1.10",
"tailwindcss": "3.1.4",
"typescript": "4.7.4",
"vite": "2.9.13",
"vite-plugin-dts": "1.2.0",
"vue": "3.2.37",
"wait-on": "6.0.1"
},
"files": [
"dist/index.es.js",
"dist/index.es.js.map",
"dist/index.umd.js",
"dist/index.umd.js.map",
"dist/src/env.d.ts",
"dist/src/types.d.ts",
"dist/src/utils.d.ts",
"dist/src/search.d.ts",
"dist/src/components/JsonSearch.vue.d.ts",
"dist/src/components/ResultList.vue.d.ts",
"dist/src/components/ResultListItem.vue.d.ts",
"dist/src/components/ResultTitle.vue.d.ts",
"dist/src/components/SearchInput.vue.d.ts",
"dist/src/components/SearchResults.vue.d.ts",
"README.md",
"LICENSE.md"
],
"keywords": [
"vue",
"json",
"search",
"hugo",
"fuse"
],
"bugs": {
"url": "https://github.com/Uninen/vue-json-search/issues"
},
"homepage": "https://github.com/Uninen/vue-json-search"
}