-
-
Notifications
You must be signed in to change notification settings - Fork 837
/
package.json
137 lines (137 loc) · 4.09 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vue-chartjs",
"type": "module",
"version": "5.3.2",
"description": "Vue.js wrapper for chart.js for creating beautiful charts.",
"author": "Jakub Juszczak <[email protected]>",
"homepage": "http://vue-chartjs.org",
"license": "MIT",
"contributors": [
{
"name": "Thorsten Lünborg",
"web": "https://github.com/LinusBorg"
},
{
"name": "Juan Carlos Alonso",
"web": "https://github.com/jcalonso"
}
],
"maintainers": [
{
"name": "Jakub Juszczak",
"email": "[email protected]",
"web": "http://www.jakubjuszczak.de"
}
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:apertureless/vue-chartjs.git"
},
"bugs": {
"url": "https://github.com/apertureless/vue-chartjs/issues"
},
"keywords": [
"ChartJs",
"Vue",
"Visualisation",
"Wrapper",
"Charts"
],
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": "./src/index.ts",
"publishConfig": {
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"directory": "package"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm test && pnpm build && del ./package && clean-publish",
"postpublish": "del ./package",
"emitDeclarations": "tsc --emitDeclarationOnly",
"build": "rollup -c & pnpm emitDeclarations",
"start:storybook": "start-storybook -p 6006 --ci",
"build:storybook": "del ./storybook-static; NODE_ENV=production build-storybook",
"lint": "eslint 'sandboxes/**/*.{js,ts,vue}' 'src/**/*.{js,ts,vue}' 'stories/**/*.{js,ts,vue}' 'test/**/*.{js,ts,vue}'",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:typings": "tsd",
"test:size": "size-limit",
"test": "pnpm lint && pnpm test:unit",
"format": "prettier --write src test sandboxes stories",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "pnpm bumpVersion && git push origin main --tags && pnpm createGithubRelease",
"updateGitHooks": "simple-git-hooks"
},
"peerDependencies": {
"chart.js": "^4.1.1",
"vue": "^3.0.0-0 || ^2.7.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@size-limit/preset-big-lib": "^11.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-controls": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/client-api": "^6.5.16",
"@storybook/client-logger": "^6.5.16",
"@storybook/vue3": "^6.5.16",
"@swc/core": "^1.3.23",
"@swc/helpers": "^0.5.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.31.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"browserslist": "^4.19.1",
"chart.js": "^4.4.1",
"clean-publish": "^4.0.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.0",
"cz-conventional-changelog": "3.3.0",
"del-cli": "^5.0.0",
"eslint": "8.55.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.0.0",
"jsdom": "^23.0.0",
"nano-staged": "^0.8.0",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.7.5",
"rollup-plugin-swc3": "^0.11.0",
"simple-git-hooks": "^2.7.0",
"simple-github-release": "^1.0.0",
"size-limit": "^11.0.0",
"standard-version": "^9.3.2",
"tsd": "^0.25.0",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"vitest": "^0.31.0",
"vitest-canvas-mock": "^0.3.0",
"vue": "^3.2.31"
},
"tsd": {
"directory": "./test"
}
}