-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.34 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": "nuxt-codemirror",
"version": "0.0.20",
"description": "Nuxt codemirror module",
"repository": "https://github.com/ThimoDEV/nuxt-codemirror",
"homepage": "https://github.com/ThimoDEV/nuxt-codemirror#readme",
"license": "MIT",
"type": "module",
"author": {
"name": "ThimoDEV",
"url": "https://github.com/ThimoDEV"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"client:build": "nuxt prepare client && nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"docs": "nuxt dev docs",
"docs:build": "nuxt build docs",
"docs:prepare": "nuxt prepare docs",
"docs:dev": "nuxt dev docs",
"docs:preview": "nuxt preview docs",
"docs:start": "node .output/server/index.mjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.4",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "6.39.15",
"@nuxt/kit": "^4.3.1"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.2",
"@nuxt/devtools-ui-kit": "^3.2.2",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@types/node": "^25.3.2",
"changelogen": "^0.6.2",
"eslint": "^10.0.2",
"nuxt": "^4.3.1",
"typescript": "5.9.3",
"vitest": "^4.0.18",
"vue-tsc": "3.2.5"
},
"resolutions": {
"vue-tsc": "2.2.2"
},
"keywords": [
"nuxt",
"codemirror",
"vue"
],
"packageManager": "pnpm@10.6.5"
}