generated from productdevbookcom/vue-ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.05 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
{
"name": "@flowtools/uplot",
"type": "module",
"version": "0.0.11",
"packageManager": "[email protected]",
"description": "Modern vue component for uplot",
"author": "Jukka Raimovaara <[email protected]> (Mentalhouse Oy)",
"license": "MIT",
"funding": "https://github.com/sponsors/flow-tools",
"homepage": "https://github.com/flow-tools/uplot",
"repository": {
"type": "git",
"url": "https://github.com/flow-tools/uplot.git"
},
"bugs": "https://github.com/flow-tools/uplot",
"keywords": [
"vue",
"uplot",
"chart",
"component"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "vite build --mode production",
"dev": "vite",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"postinstall": "npx simple-git-hooks"
},
"peerDependencies": {
"@vueuse/core": "^9.13.0",
"uplot": "^1.6.24",
"vue": "=>3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/coverage-v8": "^1.2.1",
"@vue/test-utils": "^2.4.3",
"@vueuse/core": "^10.7.2",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"uplot": "^1.6.28",
"vi-canvas-mock": "^1.0.0",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.1",
"vue": "^3.4.15"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}