-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
64 lines (64 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "muya",
"type": "module",
"version": "0.0.32",
"packageManager": "[email protected]",
"description": "Future markdown editor",
"author": "jocs <[email protected]>",
"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"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.0",
"@laynezh/vite-plugin-lib-assets": "0.5.21",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^8.0.1",
"@typescript-eslint/parser": "^7.13.0",
"commitlint": "^19.3.0",
"eslint": "^9.4.0",
"eslint-plugin-format": "^0.1.1",
"husky": "9.0.11",
"lint-staged": "^15.2.5",
"madge": "^7.0.0",
"release-it": "^17.3.0",
"stylelint": "^16.6.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"turbo": "^2.0.3",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-dts": "^3.9.1"
}
}