forked from watermarkify/vue-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "@watermarkify/vue-watermark",
"version": "0.0.5",
"private": false,
"packageManager": "[email protected]",
"description": "Vue Watermark",
"author": "աɨռɢӄաօռɢ <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/wingkwong",
"homepage": "https://github.com/watermarkify/vue-watermark#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/watermarkify/vue-watermark"
},
"bugs": {
"url": "https://github.com/watermarkify/vue-watermark/issues"
},
"keywords": [
"vue",
"watermark",
"canvas",
"vue3",
"composition-api",
"vue-watermark",
"vuewatermark",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "pkgroll --watch",
"build": "pkgroll --minify",
"lint": "eslint . --fix",
"prettier": "prettier --write .",
"format": "pnpm lint && pnpm prettier",
"play": "vite playground --open",
"play:build": "vite build playground",
"play:release": "pnpm run play:build && rsync -rvzh ./playground/dist/ ./docs/",
"test": "vitest",
"release": "pnpm build && bumpp --commit --tag --push"
},
"dependencies": {
"vue": "^3.4.18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.43.0",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"pkgroll": "^2.0.0",
"pnpm": "^8.7.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vitest": "^1.0.0"
}
}