-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.14 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "dockview-monorepo-root",
"private": true,
"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",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many -t build --projects=dockview-core,dockview,dockview-vue,dockview-react,dockview-angular",
"build:bundle": "nx run-many -t build:bundle --projects=dockview-core,dockview,dockview-vue,dockview-react,dockview-angular",
"clean": "nx run-many -t clean",
"docs": "typedoc && node scripts/docs.mjs",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint:fix",
"format": "nx run-many -t format",
"format:check": "nx run-many -t format:check",
"test": "nx run-many -t test",
"test:cov": "jest --coverage --passWithNoTests",
"gen": "node scripts/gen/index.mjs",
"gen:check": "npm run gen && git diff --exit-code __generated__/",
"release": "nx release",
"release:version": "nx release version",
"release:publish": "nx release publish"
},
"resolutions": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"vite": "^7.3.3"
},
"devDependencies": {
"@angular/common": "^21.2.12",
"@angular/compiler": "^21.2.12",
"@angular/compiler-cli": "^21.2.12",
"@angular/core": "^21.2.12",
"@angular/platform-browser": "^21.2.12",
"@angular/platform-browser-dynamic": "^21.2.12",
"@nx/js": "^22.7.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@total-typescript/shoehorn": "^0.1.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"concurrently": "^9.2.1",
"eslint": "^10.0.1",
"fs-extra": "^11.3.5",
"gulp": "^5.0.1",
"gulp-concat": "^2.6.1",
"gulp-sass": "^6.0.1",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-preset-angular": "^16.1.5",
"jest-sonar-reporter": "^2.0.0",
"jsdom": "^29.1.1",
"ng-packagr": "^21.0.0",
"nx": "^22.7.1",
"postcss": "^8.5.14",
"prettier": "^3.8.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"rimraf": "^6.1.3",
"rollup": "^4.60.3",
"rollup-plugin-postcss": "^4.0.2",
"rxjs": "^7.8.0",
"sass": "^1.99.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.28.19",
"typescript-eslint": "^8.59.3",
"typescript": "~5.9.0",
"vite": "^7.3.3",
"vitest": "^4.1.6",
"vue": "^3.5.34",
"vue-tsc": "^3.2.8",
"zone.js": "~0.15.1"
},
"engines": {
"node": "^22.13.0 || >=24.0.0"
},
"version": ""
}