-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.93 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
{
"name": "renderify-monorepo",
"version": "0.0.1",
"private": true,
"description": "A dynamic web framework powered by LLM",
"main": "index.js",
"scripts": {
"preinstall": "node scripts/ensure-pnpm.js",
"build": "turbo run build:repo",
"build:repo": "pnpm -r --filter \"./packages/*\" run build:repo",
"validate": "turbo run validate:repo",
"validate:repo": "node scripts/validate-package-metadata.mjs",
"typecheck": "turbo run typecheck:repo",
"typecheck:repo": "tsc -b tsconfig.build.json --pretty false",
"lint": "turbo run lint:repo",
"lint:repo": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format --check .",
"unit": "turbo run unit:repo",
"unit:repo": "tsx --test \"tests/*.test.ts\"",
"compat": "turbo run compat:repo",
"compat:repo": "tsx --test tests/runtime-jspm.test.ts",
"e2e": "turbo run e2e:repo",
"e2e:repo": "tsx --test \"tests/e2e/**/*.test.ts\"",
"bench": "turbo run bench:repo",
"bench:repo": "tsx tests/bench/runtime.bench.ts",
"bench:ci": "mkdir -p .artifacts/benchmarks && RENDERIFY_BENCH_JSON=.artifacts/benchmarks/runtime-bench.json RENDERIFY_BENCH_FORMAT=github pnpm bench:repo",
"test": "pnpm run typecheck && pnpm run unit",
"test:all": "pnpm run test && pnpm run e2e",
"clean": "turbo run clean:repo",
"clean:repo": "find packages -maxdepth 2 -type d -name dist -prune -exec rm -rf {} + && find packages -maxdepth 2 -type d -name dist-types -prune -exec rm -rf {} + && rm -rf .turbo",
"dev": "pnpm -r --parallel --filter \"./packages/*\" run watch:repo",
"watch": "pnpm -r --parallel --filter \"./packages/*\" run watch:repo",
"cli": "tsx packages/cli/src/index.ts",
"playground": "node --env-file=.env --import tsx packages/cli/src/index.ts playground",
"changeset": "changeset",
"changeset:check": "node scripts/check-changeset.mjs",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky",
"commit": "cz"
},
"author": "unadlib",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.27.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.58.2",
"preact": "^10.28.3",
"tinybench": "^6.0.0",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"turbo": "^2.8.6",
"typescript": "^5.9.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.29.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,json,md,yml,yaml}": "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
}
}