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
76 lines (76 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.62 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
{
"name": "univer",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@12.5.1",
"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"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.18"
}
},
"scripts": {
"prepare": "husky",
"pre-commit": "lint-staged",
"dev": "pnpm --filter univer-examples dev",
"dev:umd": "serve .",
"typecheck": "turbo typecheck",
"serve:umd": "serve .",
"test": "turbo test -- --passWithNoTests",
"coverage": "turbo --concurrency 50% coverage -- --passWithNoTests ",
"analyze:build": "node --experimental-strip-types ./scripts/build-analysis.mts",
"build": "pnpm run build:plugins && pnpm run build:presets",
"build:ci": "pnpm run build",
"build:plugins": "turbo build --filter '!./common/*' --filter '!./presets/**'",
"build:presets": "turbo build --filter './presets/**...' --filter '!./presets/**' && turbo build --filter './presets/**'",
"lint": "eslint .",
"storybook:dev": "pnpm --filter @univerjs/storybook dev:storybook",
"storybook:build": "pnpm --filter @univerjs/storybook build:storybook",
"release": "verso"
},
"devDependencies": {
"@amamo/verso": "1.2.0",
"@antfu/eslint-config": "^9.2.0",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint-react/eslint-plugin": "^5.18.1",
"@eslint/compat": "^2.1.0",
"@types/node": "^26.1.2",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@univerjs-infra/shared": "workspace:*",
"@univerjs/design": "workspace:*",
"eslint": "^10.8.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"husky": "^9.1.7",
"lint-staged": "^17.5.1",
"react": "19.3.0",
"react-dom": "19.3.0",
"serve": "^14.2.6",
"tailwindcss": "3.4.18",
"turbo": "^2.10.12",
"typescript": "^6.0.3",
"vitest": "^5.0.0"
},
"lint-staged": {
"*": "eslint --fix"
}
}