bytemd/package.json

62 lines
1.8 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",
2022-05-17 19:39:28 +08:00
"version": "1.15.0",
2020-03-01 17:52:08 +08:00
"private": true,
2020-03-04 17:40:33 +08:00
"scripts": {
2022-06-06 00:01:49 +08:00
"build": "tsc --build && pnpm --filter './packages/**' build",
"dev": "pnpm --filter playground dev",
2022-05-17 17:38:39 +08:00
"docs:build": "npx vitepress build docs",
"docs:dev": "npx vitepress dev docs",
"docs:serve": "npx vitepress serve docs",
2022-06-06 00:01:49 +08:00
"format": "prettier --write '**/*.{ts,tsx,json,md,svelte}' && sort-package-json package.json 'packages/*/package.json'",
2022-03-29 15:54:47 +08:00
"postinstall": "node scripts/postinstall.mjs && npm run format && sort-json packages/*/locales/*.json",
2022-03-31 16:14:03 +08:00
"pub": "npm run build && norm version && pnpm --recursive --registry https://registry.npmjs.org/ publish --access public",
2022-04-23 23:46:11 +08:00
"test": "norm test bytemd"
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": {
2022-06-05 14:47:37 +08:00
"@sveltejs/vite-plugin-svelte": "1.0.0-next.47",
2022-04-06 21:00:06 +08:00
"@testing-library/jest-dom": "^5.16.4",
2022-06-05 14:47:37 +08:00
"@testing-library/svelte": "^3.1.2",
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-03-01 15:18:17 +08:00
"fast-glob": "^3.2.11",
2022-04-28 01:06:48 +08:00
"fs-extra": "^10.1.0",
2022-02-04 16:39:17 +08:00
"jsdom": "^19.0.0",
2022-03-27 13:50:27 +08:00
"local-pkg": "^0.4.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-06-06 00:01:49 +08:00
"prettier": "^2.6.2",
2022-04-28 01:06:48 +08:00
"prettier-plugin-svelte": "^2.7.0",
2022-06-05 14:47:37 +08:00
"sass": "^1.52.2",
2022-03-01 16:01:32 +08:00
"sort-json": "^2.0.1",
2022-06-06 00:01:49 +08:00
"sort-package-json": "^1.57.0",
2022-05-02 14:22:22 +08:00
"svelte": "^3.48.0",
2022-04-28 01:06:48 +08:00
"svelte-preprocess": "^4.10.6",
"svelte2tsx": "^0.5.10",
2022-06-05 14:47:37 +08:00
"typescript": "^4.7.3",
2022-06-06 00:01:49 +08:00
"vite": "3.0.0-alpha.9"
2021-07-03 01:53:39 +08:00
},
2022-05-15 23:11:15 +08:00
"packageManager": "pnpm@7.1.0",
2021-07-03 01:53:39 +08:00
"bundlewatch": {
"files": [
{
2022-02-25 15:09:17 +08:00
"path": "packages/*/dist/index.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
}