-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "marked-extensions",
"description": "Marked extensions workspace",
"version": "0.0.0-development",
"private": true,
"author": "Beni Arisandi (https://stilearning.com)",
"repository": "https://github.com/bent10/marked-extensions",
"bugs": "https://github.com/bent10/marked-extensions/issues",
"license": "MIT",
"keywords": [
"marked",
"extensions",
"plugins",
"markdown",
"gfm"
],
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"coverage": "npm run coverage --workspaces --if-present",
"types": "npm run types --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/common-ancestor-path": "^1.0.2",
"@types/moo": "^0.5.9",
"@types/react-dom": "^19.0.0",
"@types/set-value": "^4.0.3",
"doogu": "^4.1.2",
"marked": "^15.0.0",
"prettier-plugin-svelte": "^3.2.7",
"pupa": "^3.1.0",
"react-dom": "^19.0.0",
"vite-plugin-cachedir": "^1.2.0",
"vite-plugin-resolve-umd-format": "^1.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "doogu/prettier.config.js",
"release": {
"extends": "doogu/release.config.js"
}
}