-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.57 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
{
"name": "vue3-open-weather-widget",
"version": "0.2.1",
"private": false,
"type": "module",
"files": [
"dist"
],
"main": "./dist/weather-vue-widget.umd.cjs",
"module": "./dist/weather-vue-widget.js",
"exports": {
".": {
"import": "./dist/weather-vue-widget.js",
"require": "./dist/weather-vue-widget.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"scripts": {
"serve": "vite preview",
"dev": "vite",
"build": "vite build --config vite.config.web.ts",
"build:lib": "vue-tsc --emitDeclarationOnly --project tsconfig.build.json && vite build",
"test:unit": "vue-cli-service test:unit --no-cache",
"lint": "vue-cli-service lint",
"build:style": "sass --no-charset ./src/scss/style.scss | node ./build/print-banner.js > dist/weatherWidget.css && cleancss -o dist/weatherWidget.min.css dist/weatherWidget.css",
"publish:lib": "npm run build:lib && npm publish",
"test:jest": "jest --config jest.config.cjs"
},
"dependencies": {
"core-js": "^3.8.3",
"dotenv-webpack": "^7.1.0",
"vue": "^3.2.13"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@types/jest": "^27.5.2",
"@types/node": "^20.7.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-e2e-cypress": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-unit-jest": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.4.1",
"@vue/vue3-jest": "^27.0.0",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"ts-jest": "^27.1.5",
"typescript": "~4.5.5",
"vite": "^4.4.9",
"vite-plugin-eslint": "^1.8.1",
"vue-jest": "^5.0.0-alpha.10",
"vue-tsc": "^1.8.13"
},
"description": "Weather Widget is a Vue 3.0 project that displays the current weather conditions providing coordinates.",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArslanAmeer/vue3-weather-widget.git"
},
"keywords": [
"arslan",
"vue3",
"weather-widget",
"weather",
"widget",
"vue3-weather-widget"
],
"author": "ArslanAmeer",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArslanAmeer/vue3-weather-widget/issues"
},
"homepage": "https://github.com/ArslanAmeer/vue3-weather-widget#readme"
}