-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.04 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
{
"name": "benchmarks",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@11.25.0",
"author": "ice breaker <hi@sonofmagic.top>",
"repository": {
"type": "git",
"url": "git+https://github.com/weapp-vite/benchmarks.git"
},
"bugs": {
"url": "https://github.com/weapp-vite/benchmarks/issues"
},
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"build": "turbo run build",
"bench": "pnpm --filter @benchmarks/runner bench",
"bench:compile": "pnpm --filter @benchmarks/runner bench:compile",
"bench:hmr": "pnpm --filter @benchmarks/runner bench:hmr",
"bench:runtime": "pnpm --filter @benchmarks/runner bench:runtime",
"bench:size:wevu": "pnpm run build && pnpm --filter @benchmarks/runner bench:size:wevu",
"report:dashboard": "pnpm --filter @benchmarks/runner report:dashboard",
"report:refresh": "pnpm --filter @benchmarks/runner report:refresh",
"dev": "turbo run dev --parallel",
"e2e:ide:runtime": "tsx e2e/ide/runtime-benchmark.ts",
"test": "turbo run test",
"test:hbuilderx:uni-app-x": "pnpm --filter @benchmarks/uni-app-x test:hbuilderx:mp-weixin",
"test:dev": "vitest",
"lint": "turbo run lint",
"tsd": "turbo run tsd",
"audit": "pnpm audit --audit-level=moderate",
"audit:fix": "pnpm audit --fix",
"typecheck": "turbo run typecheck && tsc -p e2e/ide/tsconfig.json",
"format": "eslint . --fix",
"validate": "pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run tsd && pnpm run test",
"release": "pnpm change",
"publish-packages": "repo release stable",
"release:pre": "repo release pre publish",
"------": "--------------",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"commit": "commit",
"commitlint": "commitlint --edit",
"-------": "---------------",
"repo:init": "repo init",
"repo:new": "repo new",
"repo:check": "repo check",
"repo:doctor": "repo doctor",
"------simple": "--------------",
"pr:alpha": "repo release pre enter alpha",
"pr:beta": "repo release pre enter beta",
"pr:rc": "repo release pre enter rc",
"pr:next": "repo release pre enter next",
"pr:exit": "repo release pre exit",
"--------": "----------------"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@types/node": "^25.9.5",
"@types/semver": "^7.8.0",
"@vitest/coverage-v8": "~5.0.0",
"ci-info": "^4.4.0",
"cross-env": "^10.1.0",
"defu": "^6.1.7",
"es-toolkit": "^1.52.0",
"eslint": "^10.9.1",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"only-allow": "^1.2.2",
"pathe": "^2.0.3",
"pkg-types": "^2.3.2",
"repoctl": "^5.4.7",
"stylelint": "^17.14.1",
"tailwindcss": "^4.3.3",
"tsd": "^0.33.0",
"tsdown": "0.22.7",
"tslib": "^2.8.1",
"tsx": "^4.23.13",
"turbo": "^2.10.12",
"type-fest": "^5.9.0",
"typescript": "^6.0.3",
"vitest": "~5.0.0",
"yaml": "^2.9.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}