generated from productdevbookcom/vue-ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"name": "@flowtools/uplot",
"type": "module",
"version": "0.0.12",
"packageManager": "pnpm@8.14.0",
"description": "Modern vue component for uplot",
"author": "Jukka Raimovaara <roska@mentalhouse.fi> (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": "^3.11.2",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.6",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^12.0.0",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"uplot": "^1.6.31",
"vi-canvas-mock": "^1.0.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.6",
"vue": "^3.5.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}