forked from pd4d10/hashmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "@bytemd/monorepo",
"private": true,
"scripts": {
"build": "rm -rf packages/*/tsconfig.tsbuildinfo && tsc --build && pnpm --filter './packages/**' build",
"dev": "pnpm --filter playground dev",
"format": "prettier --write '**/*.{ts,tsx,json,md,svelte}' && sort-package-json package.json 'packages/*/package.json'",
"postinstall": "node scripts/postinstall.mjs && pnpm format && sort-json packages/*/locales/*.json",
"pub": "pnpm build && pnpm --recursive --registry https://registry.npmjs.org/ publish --access public",
"release": "node scripts/release.mjs",
"test": "pnpm --filter bytemd test"
},
"prettier": {
"pluginSearchDirs": [
"."
],
"proseWrap": "never",
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "1.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.3",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/resolve": "^1.20.2",
"conventional-changelog-cli": "^2.2.2",
"decode-named-character-reference": "^1.0.2",
"execa": "^6.1.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"jsdom": "^20.0.0",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"resolve": "^1.22.1",
"sass": "^1.53.0",
"sort-json": "^2.0.1",
"sort-package-json": "^1.57.0",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.12",
"tsdv": "^0.6.1",
"typescript": "^4.7.4",
"vite": "^3.0.3"
},
"packageManager": "[email protected]",
"bundlewatch": {
"files": [
{
"path": "packages/*/dist/index.umd.js"
}
],
"ci": {
"repoBranchBase": "main",
"trackBranches": [
"main"
]
}
}
}