-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·76 lines (76 loc) · 2.32 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
{
"name": "vue-search-input",
"description": "A Vue.js 3 search input component, inspired by the global search input of Storybook and GitHub.",
"version": "0.0.0-semantic-release",
"license": "MIT",
"repository": "https://github.com/kouts/vue-search-input",
"author": "Giannis Koutsaftakis",
"keywords": [
"loader",
"loading",
"progress",
"spinner",
"promise",
"handler"
],
"main": "dist/vue-search-input.umd.js",
"module": "dist/vue-search-input.es.js",
"types": "dist/types/SearchInput.vue.d.ts",
"exports": {
".": {
"import": "./dist/vue-search-input.es.js",
"require": "./dist/vue-search-input.umd.js",
"types": "./dist/types/SearchInput.vue.d.ts"
},
"./dist/styles.css": {
"import": "./dist/styles.css",
"require": "./dist/styles.css"
}
},
"unpkg": "dist/vue-search-input.umd.js",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build:vite": "vue-tsc --noEmit && vite build",
"build:sass": "sass --no-source-map src/styles.scss dist/styles.css",
"build": "npm run build:vite && npm run build:sass",
"build-playground": "BUILD_MODE=playground npm run build:vite",
"preview": "vite preview",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint-fix": "eslint --fix \"**/*.{vue,ts,js}\"",
"test:unit": "jest",
"test:unit-coverage": "jest --coverage && make-coverage-badge",
"typecheck": "vue-tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@kouts/eslint-config": "^0.0.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.29",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "29.2.6",
"babel-jest": "^29.7.0",
"bootstrap": "^5.3.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.3.2",
"rollup-plugin-delete": "^2.0.0",
"sass": "^1.77.5",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vue": "^3.4.29",
"vue-tsc": "^2.0.21"
}
}