-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
71 lines (71 loc) · 1.97 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
65
66
67
68
69
70
71
{
"name": "@bytemd/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm clean && node scripts/build.mjs && tsc --build",
"clean": "rm -rf packages/*/tsconfig.tsbuildinfo && rm -rf packages/*/dist",
"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 && lerna publish",
"style": "prettier --check '**/*.{ts,tsx,json,md,svelte}'",
"test": "vitest"
},
"prettier": {
"pluginSearchDirs": [
"."
],
"proseWrap": "never",
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@icon-park/svg": "^1.4.2",
"@sveltejs/vite-plugin-svelte": "2.0.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.7",
"@types/resolve": "^1.20.2",
"conventional-changelog-cli": "^2.2.2",
"decode-named-character-reference": "^1.0.2",
"execa": "^7.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1",
"jsdom": "^21.1.1",
"lerna": "^6.6.1",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"resolve": "^1.22.1",
"sass": "^1.60.0",
"sort-json": "^2.0.1",
"sort-package-json": "^2.4.1",
"svelte": "^3.57.0",
"svelte-preprocess": "^5.0.3",
"svelte2tsx": "^0.6.10",
"svgo": "^3.0.2",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"packageManager": "[email protected]",
"bundlewatch": {
"files": [
{
"path": "packages/*/dist/index.umd.js"
}
],
"ci": {
"repoBranchBase": "main",
"trackBranches": [
"main"
]
}
}
}