This repository was archived by the owner on May 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) 路 2.33 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) 路 2.33 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
{
"name": "muya",
"type": "module",
"version": "0.2.0",
"private": true,
"packageManager": "pnpm@10.22.0",
"description": "Future markdown editor",
"author": "jocs <ransixi@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/marktext/muya#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/marktext/muya.git"
},
"bugs": {
"url": "https://github.com/marktext/muya/issues"
},
"keywords": [
"markdown",
"editor",
"web"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.5.0"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev": "turbo dev:demo",
"lint:types": "turbo lint:types",
"build": "turbo build",
"test": "turbo test -- --passWithNoTests",
"coverage": "turbo coverage -- --passWithNoTests",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"lint:css": "stylelint \"**/*.css\"",
"postinstall": "husky install",
"release": "release-it",
"check-circular": "madge --circular packages/core/src/index.ts",
"e2e": "pnpm --filter muya-e2e e2e",
"e2e:ui": "pnpm --filter muya-e2e e2e:ui",
"e2e:headed": "pnpm --filter muya-e2e e2e:headed",
"e2e:install": "pnpm --filter muya-e2e e2e:install"
},
"pnpm": {
"overrides": {
"happy-dom": "^15.11.7"
}
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@laynezh/vite-plugin-lib-assets": "2.1.3",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/conventional-changelog": "^11.0.0",
"@typescript-eslint/parser": "^8.59.4",
"commitlint": "^21.0.1",
"conventional-changelog-angular": "^8.3.1",
"eslint": "^10.4.0",
"eslint-plugin-format": "^2.0.1",
"husky": "9.1.7",
"lint-staged": "^17.0.5",
"madge": "^8.0.0",
"release-it": "^19.2.4",
"stylelint": "^17.11.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"turbo": "^2.9.14",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vite-plugin-dts": "^5.0.1"
}
}