forked from dream-num/univer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.25 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.25 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
{
"name": "univer",
"type": "module",
"version": "0.10.6",
"private": true,
"packageManager": "pnpm@10.15.0",
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
"license": "Apache-2.0",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/univer"
},
"homepage": "https://univer.ai",
"repository": {
"type": "git",
"url": "https://github.com/dream-num/univer"
},
"bugs": {
"url": "https://github.com/dream-num/univer/issues"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"scripts": {
"prepare": "husky",
"pre-commit": "lint-staged",
"dev": "pnpm --filter univer-examples dev:demo -- --host 0.0.0.0",
"dev:libs": "pnpm --filter univer-examples dev:demo-libs",
"dev:e2e": "pnpm --filter univer-examples dev:e2e",
"use:react16": "tsx ./scripts/react-version-manager.ts --react=16",
"use:react19": "tsx ./scripts/react-version-manager.ts --react=19",
"typecheck": "turbo typecheck",
"test": "turbo test -- --passWithNoTests",
"coverage": "turbo coverage -- --passWithNoTests",
"build": "turbo build --concurrency=30% --filter=!./common/*",
"build:ci": "turbo build --concurrency=100% --filter=!./common/*",
"build:demo": "pnpm --filter univer-examples build:demo",
"build:e2e": "pnpm --filter univer-examples build:e2e",
"serve:e2e": "serve ./examples/local",
"test:e2e": "playwright test",
"lint": "eslint .",
"storybook:dev": "pnpm --filter @univerjs/storybook dev:storybook",
"storybook:build": "pnpm --filter @univerjs/storybook build:storybook",
"release": "release-it"
},
"devDependencies": {
"@antfu/eslint-config": "5.2.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint-react/eslint-plugin": "^1.52.7",
"@playwright/test": "^1.55.0",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/conventional-changelog": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.3.0",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@univerjs-infra/shared": "workspace:*",
"@univerjs/design": "workspace:*",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "9.34.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fs-extra": "^11.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"posthog-node": "^5.8.1",
"react": "19.1.1",
"react-dom": "19.1.1",
"release-it": "^19.0.4",
"serve": "^14.2.4",
"tailwindcss": "3.4.17",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"resolutions": {
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"react": "19.1.1",
"react-dom": "19.1.1"
},
"lint-staged": {
"*": "eslint --fix"
}
}