bytemd/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2020-02-10 21:20:25 +08:00
{
2022-02-24 18:49:55 +08:00
"name": "@bytemd/monorepo",
2020-03-01 17:52:08 +08:00
"private": true,
2020-03-04 17:40:33 +08:00
"scripts": {
2022-08-16 14:04:47 +08:00
"build": "rm -rf packages/*/tsconfig.tsbuildinfo && tsc --build && tsx scripts/build.ts",
2022-06-06 00:01:49 +08:00
"dev": "pnpm --filter playground dev",
"format": "prettier --write '**/*.{ts,tsx,json,md,svelte}' && sort-package-json package.json 'packages/*/package.json'",
2022-08-15 17:25:48 +08:00
"postinstall": "tsx scripts/postinstall.ts && pnpm format && sort-json packages/*/locales/*.json",
2022-06-09 15:55:46 +08:00
"pub": "pnpm build && pnpm --recursive --registry https://registry.npmjs.org/ publish --access public",
2022-08-15 17:25:48 +08:00
"release": "tsx scripts/release.ts",
2022-06-06 21:02:58 +08:00
"test": "pnpm --filter bytemd test"
2020-03-04 17:40:33 +08:00
},
2022-03-29 20:13:08 +08:00
"prettier": {
2022-06-06 00:01:49 +08:00
"pluginSearchDirs": [
"."
],
2022-03-29 20:13:08 +08:00
"proseWrap": "never",
"semi": false,
"singleQuote": true
},
2020-03-04 17:40:33 +08:00
"devDependencies": {
"@icon-park/svg": "^1.4.2",
2022-10-13 16:34:15 +08:00
"@sveltejs/vite-plugin-svelte": "1.0.9",
2022-08-16 14:04:47 +08:00
"@testing-library/jest-dom": "^5.16.5",
2022-10-13 16:34:15 +08:00
"@testing-library/svelte": "^3.2.2",
2022-10-13 16:42:59 +08:00
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
2022-06-06 00:01:49 +08:00
"@types/fs-extra": "^9.0.13",
2022-03-27 20:59:49 +08:00
"@types/lodash-es": "^4.17.6",
2022-07-08 19:58:29 +08:00
"@types/resolve": "^1.20.2",
2022-06-09 15:55:46 +08:00
"conventional-changelog-cli": "^2.2.2",
2022-07-08 19:58:29 +08:00
"decode-named-character-reference": "^1.0.2",
2022-06-09 15:55:46 +08:00
"execa": "^6.1.0",
2022-10-13 16:34:15 +08:00
"fast-glob": "^3.2.12",
2022-04-28 01:06:48 +08:00
"fs-extra": "^10.1.0",
2022-10-13 16:34:15 +08:00
"jsdom": "^20.0.1",
2022-03-27 20:59:49 +08:00
"lodash-es": "^4.17.21",
2021-04-02 16:08:57 +08:00
"mustache": "^4.2.0",
2022-07-08 20:04:36 +08:00
"prettier": "^2.7.1",
2022-10-13 16:34:15 +08:00
"prettier-plugin-svelte": "^2.7.1",
2022-07-08 19:58:29 +08:00
"resolve": "^1.22.1",
2022-10-13 16:34:15 +08:00
"sass": "^1.55.0",
2022-03-01 16:01:32 +08:00
"sort-json": "^2.0.1",
2022-10-13 16:34:15 +08:00
"sort-package-json": "^2.0.0",
"svelte": "^3.50.1",
2022-07-08 19:58:29 +08:00
"svelte-preprocess": "^4.10.7",
2022-10-13 16:34:15 +08:00
"svelte2tsx": "^0.5.19",
2022-08-16 14:04:47 +08:00
"tsdv": "^0.7.0",
2022-10-13 16:34:15 +08:00
"tsx": "^3.10.1",
"typescript": "^4.8.4"
2021-07-03 01:53:39 +08:00
},
2022-10-13 16:34:15 +08:00
"packageManager": "pnpm@7.13.4",
2021-07-03 01:53:39 +08:00
"bundlewatch": {
"files": [
{
2022-07-20 22:05:09 +08:00
"path": "packages/*/dist/index.umd.js"
2021-07-03 01:53:39 +08:00
}
2021-07-03 02:25:06 +08:00
],
"ci": {
2021-07-03 11:40:05 +08:00
"repoBranchBase": "main",
2021-07-03 02:25:06 +08:00
"trackBranches": [
"main"
]
}
2022-03-26 00:06:41 +08:00
}
2020-02-10 21:20:25 +08:00
}