forked from pd4d10/hashmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "@bytemd/monorepo",
"private": true,
"scripts": {
"build": "rm -rf packages/*/tsconfig.tsbuildinfo && tsc --build && tsx scripts/build.ts",
"dev": "pnpm --filter playground dev",
"format": "prettier --write '**/*.{ts,tsx,json,md,svelte}' && sort-package-json package.json 'packages/*/package.json'",
"postinstall": "tsx scripts/postinstall.ts && pnpm format && sort-json packages/*/locales/*.json",
"pub": "pnpm build && pnpm --recursive --registry https://registry.npmjs.org/ publish --access public",
"release": "tsx scripts/release.ts",
"test": "pnpm --filter bytemd test"
},
"prettier": {
"pluginSearchDirs": [
"."
],
"proseWrap": "never",
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "1.0.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@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.12",
"fs-extra": "^11.1.0",
"jsdom": "^20.0.3",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"resolve": "^1.22.1",
"sass": "^1.56.2",
"sort-json": "^2.0.1",
"sort-package-json": "^2.1.0",
"svelte": "^3.54.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.22",
"tsdv": "^0.7.0",
"tsx": "^3.12.1",
"typescript": "^4.9.4"
},
"packageManager": "pnpm@7.13.4",
"bundlewatch": {
"files": [
{
"path": "packages/*/dist/index.umd.js"
}
],
"ci": {
"repoBranchBase": "main",
"trackBranches": [
"main"
]
}
}
}