-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.47 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
{
"name": "vue-markdoc",
"type": "module",
"version": "0.3.0",
"packageManager": "pnpm@8.6.11",
"description": "Vue renderer for Markdoc",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"frontmatter",
"markdown",
"markdoc",
"react",
"vue"
],
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite serve dev",
"dev:build": "vite build dev",
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast --dts-resolve --minify",
"lint": "eslint .",
"test": "vitest run",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish"
},
"peerDependencies": {
"@markdoc/markdoc": "^0.3.0",
"vue": "^3.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.0",
"@markdoc/markdoc": "^0.3.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/test-utils": "2.4.1",
"bumpp": "^9.1.1",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"jsdom": "^22.1.0",
"tsup": "^7.2.0",
"typescript": "5.1.6",
"vite": "^4.4.8",
"vitest": "^0.34.1",
"vue": "^3.3.4"
},
"eslintConfig": {
"extends": "@antfu",
"rules": {
"vue/one-component-per-file": "off"
}
}
}