-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
120 lines (120 loc) · 3.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vue-google-charts",
"version": "1.1.0",
"description": "Reactive Vue.js wrapper for Google Charts lib",
"author": {
"name": "Refat",
"email": "[email protected]"
},
"homepage": "https://github.com/devstark-com/vue-google-charts#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devstark-com/vue-google-charts.git"
},
"bugs": {
"url": "https://github.com/devstark-com/vue-google-charts/issues"
},
"main": "./src/index.ts",
"types": "./dist/index.d.ts",
"publishConfig": {
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"directory": "package"
},
"files": [
"dist/",
"legacy/index.*"
],
"scripts": {
"prepublishOnly": "pnpm test && pnpm build && del ./package && clean-publish",
"postpublish": "del ./package",
"emitDeclarations": "tsc --emitDeclarationOnly",
"build:latest": "rollup -c & pnpm emitDeclarations",
"build:legacy": "rollup -c legacy/rollup.config.js & pnpm emitDeclarations",
"build": "pnpm build:latest && pnpm build:legacy",
"lint": "eslint --ext .js,.vue,.ts src",
"format": "prettier --write src rollup.config.js",
"test:size": "size-limit",
"test:typings": "tsd",
"test:unit:latest": "jest -c jest.config.js",
"test:unit:legacy": "cd legacy && pnpm test:unit",
"test:unit": "pnpm test:unit:latest && pnpm test:unit:legacy",
"test": "pnpm lint && pnpm test:unit",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "pnpm bumpVersion && git push origin master --tags && pnpm createGithubRelease",
"updateGitHooks": "simple-git-hooks",
"start:storybook": "start-storybook -p 6006",
"build:storybook": "del ./storybook-static; NODE_ENV=production build-storybook"
},
"keywords": [
"vue",
"vuejs",
"charts",
"google charts",
"charts component"
],
"peerDependencies": {
"vue": "^3.0.0-0 || ^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.1",
"@size-limit/preset-big-lib": "^7.0.8",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/vue3": "^6.4.22",
"@swc/core": "^1.2.124",
"@swc/helpers": "^0.4.3",
"@swc/jest": "^0.2.20",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.1",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/cli-plugin-babel": "^5.0.4",
"@vue/compiler-sfc": "^3.2.26",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.21",
"@vue/vue3-jest": "^27.0.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"browserslist": "^4.19.1",
"clean-publish": "^4.0.1",
"commitizen": "^4.2.4",
"cz": "^1.8.2",
"del-cli": "^4.0.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-vue": "^8.2.0",
"jest": "^27.5.1",
"nano-staged": "^0.8.0",
"prettier": "^2.5.1",
"rollup": "^2.62.0",
"rollup-plugin-swc": "^0.2.0",
"simple-git-hooks": "^2.7.0",
"simple-github-release": "^1.0.0",
"size-limit": "^7.0.8",
"standard-version": "^9.3.2",
"tsd": "^0.21.0",
"typescript": "^4.6.3",
"vite": "^2.9.6",
"vue": "^3.2.33",
"vue-loader": "^17.0.0"
},
"pnpm": {
"overrides": {
"puppeteer-core": "13.2.0"
}
},
"tsd": {
"directory": "./test"
},
"readme": ""
}