-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.68 KB
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
{
"name": "draw-studio",
"private": false,
"version": "1.1.0",
"description": "A powerful drawing board plugin for Vue 3 with customizable tools and artistic styles",
"type": "module",
"main": "dist/draw-studio.umd.js",
"module": "dist/draw-studio.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"vue3",
"drawing-board",
"canvas",
"sketch",
"art",
"illustration",
"ink-painting",
"vue-component",
"typescript"
],
"author": {
"name": "gumingchen",
"email": "gumingchen@foxmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gmingchen/draw-studio.git"
},
"homepage": "https://github.com/gmingchen/draw-studio#readme",
"bugs": {
"url": "https://github.com/gmingchen/draw-studio/issues"
},
"scripts": {
"dev:vue3": "pnpm -C play/vue3 dev",
"lib": "vite build",
"pub": "npm publish --access public",
"lp": "pnpm run lib && pnpm run pub"
},
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false,
"peerDependencies": {
"vue": "^3.5.0"
},
"dependencies": {
"@draw-studio/draw-studio-for-vue3": "workspace:*",
"@draw-studio/theme-chalk": "workspace:*",
"@draw-studio/utils": "workspace:*",
"sass": "^1.97.3"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^6.0.0",
"@vue/eslint-config-typescript": "^14.1.4",
"eslint": "^8.0.0",
"eslint-plugin-vue": "^9.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.17.0",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vue": "^3.5.0"
}
}