-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
{
"name": "dragon-editor",
"version": "4.0.4",
"description": "Javascript WYSIWYG editor in Nuxt!",
"repository": {
"type": "git",
"url": "git+https://github.com/lovefields/dragonEditor.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"workspaces": [
"playground"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.4.8",
"@pinia/nuxt": "^0.11.3",
"@vueuse/nuxt": "^14.3.0",
"highlight.js": "^11.11.1",
"pinia": "^3.0.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.8",
"@nuxt/test-utils": "^4.0.3",
"@types/bun": "^1.3.14",
"changelogen": "^0.6.2",
"eslint": "^10.5.0",
"nuxt": "^4.4.8",
"sass": "^1.101.0",
"sass-embedded": "^1.100.0",
"typescript": "^5.1.6",
"vitest": "^4.1.9",
"vue-tsc": "^3.3.5"
},
"keywords": [
"editor",
"wysiwyg-editor",
"korean",
"language",
"nuxt4"
],
"author": "Lovefields <lovefield@dico.me> (https://dico.me)",
"bugs": {
"url": "https://github.com/lovefields/dragonEditor/issues"
},
"homepage": "https://github.com/lovefields/dragonEditor#readme",
"resolutions": {
"typescript": "5.1.6"
}
}