-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "editable-div",
"version": "0.0.9",
"description": "Create an editable div element, supports vue components(both vue2 and vue3)",
"keywords": [
"vue",
"vue3",
"contenteditable",
"editable-div"
],
"author": {
"name": "tzyito",
"url": "https://github.com/tzyito"
},
"repository": "https://github.com/tzyito/editable-div",
"bugs": {
"url": "https://github.com/tzyito/editable-div/issues"
},
"license": "MIT",
"scripts": {
"play": "pnpm -C playground/vue3 dev",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly",
"release": "esno ./scripts/release.ts"
},
"exports": {
".": {
"import": "./dist/editable-div.mjs",
"require": "./dist/editable-div.umd.js",
"types": "./dist/editable-div.d.ts"
}
},
"types": "dist/editable-div.d.ts",
"main": "dist/editable-div.umd.js",
"module": "dist/editable-div.mjs",
"unpkg": "./dist/editable-div.umd.js",
"jsdelivr": "./dist/editable-div.umd.js",
"files": [
"dist/*"
],
"peerDependencies": {
"@vue/composition-api": ">=1",
"vue": "^2.6.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.8.9",
"@vitejs/plugin-vue": "^4.4.0",
"esno": "^0.17.0",
"prompts": "^2.4.2",
"typescript": "^5.0.2",
"vite": "^4.5.0",
"vue": "^3.3.5",
"vue-tsc": "^1.8.5"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"picocolors": "^1.0.0",
"semver": "^7.5.4",
"vue-demi": "^0.14.6"
}
}