-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "rendu",
"version": "0.1.0",
"description": "",
"license": "MIT",
"repository": "h3js/rendu",
"bin": "./dist/cli.mjs",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest dev",
"lint": "oxlint . && oxfmt --check .",
"fmt": "automd && oxlint . --fix && oxfmt .",
"prepack": "pnpm build",
"play": "pnpm rendu playground",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"rendu": "node ./src/cli.ts",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsgo --noEmit --skipLibCheck"
},
"dependencies": {
"srvx": ">=0.11"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260401.1",
"@vitest/coverage-v8": "^4.1.2",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"cookie-es": "^3.1.1",
"eslint-config-unjs": "^0.6.2",
"obuild": "^0.4.32",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"rendu": "^0.0.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0"
}