-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.74 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
{
"name": "@noction/vue-highcharts",
"version": "1.0.4",
"description": "Vue wrapper for Highcharts",
"type": "module",
"main": "dist/main.cjs",
"types": "dist/main.d.ts",
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs",
"default": "./dist/main.cjs"
},
"./*": "./*"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Noction/vue-highcharts"
},
"homepage": "https://github.com/Noction/vue-highcharts",
"bugs": "https://github.com/Noction/vue-highcharts/issues",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint . --ext .ts",
"type:check": "tsc",
"test": "eslint tests --ext .spec.ts && tsc && vitest run --globals --environment=jsdom",
"test:coverage": "pnpm test -- --coverage.enabled --coverage.provider=v8 --coverage.reporter=cobertura",
"prepublishOnly": "pnpm build"
},
"keywords": [
"vue-highcharts",
"highcharts-vue",
"highcharts",
"vue-charts",
"wrapper",
"vue",
"component",
"charts",
"vue3"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^0.34.3",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.48.0",
"eslint-plugin-sort-exports": "^0.8.0",
"jsdom": "^22.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
},
"peerDependencies": {
"highcharts": ">=10",
"vue": ">=3"
},
"dependencies": {
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"engines": {
"node": "^20",
"pnpm": "^8"
}
}