-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "@nuxtlabs/monarch-mdc",
"version": "0.5.0",
"license": "MIT",
"description": "Integrate MDC syntax with Monaco Editor",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"test:ui": "vitest --ui --passWithNoTests",
"build": "unbuild",
"release": "pnpm test && release-it"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.5",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"execa": "^9.5.2",
"mdclint": "^0.0.2",
"monaco-editor-core": "^0.52.2",
"release-it": "^18.1.1",
"unbuild": "^3.2.0",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"after:bump": "npx changelogen@latest --no-commit --no-tag --output --r $(node -p \"require('./package.json').version\")"
},
"npm": {
"publish": false
}
}
}