-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "weather-widget-vue",
"author": "Craig R Broughton",
"url": "https://crbroughton.me",
"description": "A small collection of Weather Widgets; Built with Vue.",
"keywords": [
"vue",
"weather",
"widget",
"widgets",
"openweather"
],
"version": "0.2.4",
"main": "./dist/weather-widget-vue.umd.js",
"module": "./dist/weather-widget-vue-es.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CRBroughton/weather-widget-vue.git"
},
"license": "GPLv2",
"exports": {
".": {
"import": "./dist/weather-widget-vue-es.js",
"require": "./dist/weather-widget-vue-umd.js"
}
},
"scripts": {
"build": "vue-tsc --declaration --emitDeclarationOnly && vite build",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview",
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version",
"check": "NPM_CHECK_INSTALLER=pnpm npm-check -u",
"release": "pnpm run build && pnpm npx changeset publish"
},
"dependencies": {
"axios": "1.6.0",
"vue": "3.3.7"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0",
"@changesets/cli": "^2.26.2",
"@histoire/plugin-vue": "0.17.4",
"@vitejs/plugin-vue": "4.4.0",
"eslint": "8.52.0",
"histoire": "0.17.4",
"npm-check": "^6.0.1",
"typescript": "5.2.2",
"vite": "4.5.0",
"vue-tsc": "1.8.22"
}
}