1
0
mirror of https://github.com/mathuo/dockview synced 2025-03-09 15:32:03 +00:00
dockview/package.json

82 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2020-07-30 22:15:32 +00:00
{
2022-04-24 10:26:06 +00:00
"name": "dockview-monorepo-root",
"private": true,
2023-10-22 14:15:53 +00:00
"description": "Monorepo for https://github.com/mathuo/dockview",
"homepage": "https://github.com/mathuo/dockview#readme",
"bugs": {
"url": "https://github.com/mathuo/dockview/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathuo/dockview.git"
},
"license": "MIT",
"author": "https://github.com/mathuo",
2022-08-19 16:13:41 +00:00
"workspaces": [
"packages/*"
],
2022-04-24 10:26:06 +00:00
"scripts": {
"build": "lerna run build --scope '{dockview-core,dockview,dockview-vue,dockview-react}'",
2022-04-24 10:26:06 +00:00
"clean": "lerna run clean",
2023-05-10 21:06:12 +00:00
"docs": "typedoc",
2023-10-22 14:15:53 +00:00
"generate-docs": "node scripts/docs.mjs",
"lint": "eslint packages/**/src/** --ext .ts,.tsx,.js,.jsx",
"package": "node scripts/package.js",
2023-10-01 11:07:48 +00:00
"package-docs": "node scripts/package-docs.js",
2023-10-22 14:15:53 +00:00
"set-experimental-versions": "node scripts/set-experimental-versions",
"test": "jest",
"test:cov": "jest --coverage",
"version": "lerna version"
2022-04-24 10:26:06 +00:00
},
2023-10-22 14:15:53 +00:00
"resolutions": {
2024-01-02 14:43:32 +00:00
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18"
2022-04-24 10:26:06 +00:00
},
"devDependencies": {
2023-10-22 14:15:53 +00:00
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/dom": "^9.3.3",
2024-01-02 14:43:32 +00:00
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
2023-08-22 19:31:47 +00:00
"@total-typescript/shoehorn": "^0.1.1",
2024-01-02 14:43:32 +00:00
"@types/jest": "^29.5.11",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
2024-03-04 20:28:25 +00:00
"@vitejs/plugin-vue": "^5.0.4",
"@vue/tsconfig": "^0.5.1",
2024-03-27 21:32:39 +00:00
"concurrently": "^8.2.2",
2022-04-24 10:26:06 +00:00
"cross-env": "^7.0.3",
2024-01-02 14:43:32 +00:00
"eslint": "^8.56.0",
"fs-extra": "^11.2.0",
2022-04-24 10:26:06 +00:00
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
2023-10-22 14:15:53 +00:00
"gulp-dart-sass": "^1.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2022-04-24 10:26:06 +00:00
"jest-sonar-reporter": "^2.0.0",
2024-01-02 14:43:32 +00:00
"jsdom": "^23.0.1",
"lerna": "^8.0.1",
2023-10-22 14:15:53 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
2024-01-02 14:43:32 +00:00
"rollup": "^4.9.2",
2023-10-22 14:15:53 +00:00
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.1",
2024-01-02 14:43:32 +00:00
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
2023-10-22 14:15:53 +00:00
"tslib": "^2.6.2",
2024-01-02 14:43:32 +00:00
"typedoc": "^0.25.6",
2024-03-04 20:28:25 +00:00
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vue": "^3.4.21",
2024-03-27 21:32:39 +00:00
"vue-sfc-loader": "^0.1.0",
2024-03-04 20:28:25 +00:00
"vue-tsc": "^2.0.5"
2024-01-02 14:43:32 +00:00
},
"engines": {
"node": ">=18.0"
2023-10-01 11:07:48 +00:00
}
2024-03-17 20:31:42 +00:00
}