-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"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/*"
],
"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.3",
"@types/moo": "^0.5.8",
"@types/react-dom": "^18.2.14",
"doogu": "^3.2.7",
"marked": "^9.1.2",
"prettier-plugin-svelte": "^3.0.3",
"pupa": "^3.1.0",
"react-dom": "^18.2.0",
"vite-plugin-cachedir": "^1.1.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "./node_modules/doogu/eslint"
},
"prettier": "doogu/prettier.json",
"release": {
"extends": "doogu/release.config.js"
}
}