-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.34 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.34 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
{
"scripts": {
"build": "zile",
"changeset:publish": "zile publish:prepare && changeset publish && zile publish:post",
"changeset:version": "changeset version && pnpm check",
"check": "oxlint --fix --ignore-pattern package.json && oxfmt",
"check:types": "tsgo -b",
"check:types:examples": "pnpm --filter *-example check:types",
"preconstruct": "zile dev && pnpm check",
"test": "vitest"
},
"packageManager": "[email protected]",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.15.0",
"onFail": "download"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/express": "^5.0.6",
"@types/http-proxy": "^1.17.17",
"@types/node": "^25.6.0",
"@types/react": "catalog:default",
"@types/react-dom": "catalog:default",
"@typescript/native-preview": "7.0.0-dev.20260303.1",
"@vitejs/plugin-react": "catalog:default",
"@vitest/coverage-v8": "^4.1.5",
"elysia": "^1.4.28",
"express": "^5.2.1",
"hono": "^4.12.14",
"oxfmt": "^0.35.0",
"oxlint": "^1.61.0",
"prool": "catalog:default",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"simple-git-hooks": "^2.13.1",
"testcontainers": "^11.14.0",
"typescript": "catalog:default",
"viem": "^2.48.4",
"vitest": "^4.1.5",
"zile": "^0.0.22"
},
"simple-git-hooks": {
"pre-commit": "pnpm check"
},
"pnpm": {
"overrides": {
"ox": "~0.14.15",
"react": "catalog:default",
"react-dom": "catalog:default",
"tempo.ts": "workspace:*",
"viem": "catalog:default",
"tar": ">=7.5.11",
"protobufjs": ">=7.5.5"
}
},
"[!start-pkg]": "",
"name": "tempo.ts",
"type": "module",
"version": "0.14.2",
"dependencies": {
"@remix-run/fetch-router": "~0.17.0",
"ox": "~0.14.20"
},
"peerDependencies": {
"viem": ">=2.43.3"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
}
},
"repository": {
"url": "https://github.com/tempoxyz/tempo-ts"
},
"license": "MIT",
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"src": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"src": "./src/server/index.ts",
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
}
}
}