-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.71 KB
/
package.json
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
{
"name": "fuman",
"type": "module",
"version": "0.0.10",
"packageManager": "[email protected]",
"description": "",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teidesu/fuman.git"
},
"scripts": {
"postinstall": "tsx packages/build/src/cli/main.ts validate-workspace-deps --skip-peer-deps",
"prepare": "pnpm run -C packages/build build-vite-plugin",
"dev": "vitest watch",
"test": "vitest run --coverage",
"build-package": "pnpm run -C packages/build build-vite-plugin && tsx packages/build/src/cli.ts build",
"build-package-jsr": "tsx packages/build/src/cli.ts build --jsr",
"lint": "eslint",
"lint:depcruiser": "depcruise .",
"lint:ci": "CI=1 NODE_OPTIONS=\\\"--max_old_space_size=8192\\\" eslint",
"lint:tsc": "pnpm -r --workspace-concurrency=4 exec tsc",
"lint:tsc:ci": "pnpm -r exec tsc"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@fuman/build": "workspace:^",
"@types/bun": "^1.1.14",
"@types/deno": "npm:@teidesu/[email protected]",
"@types/node": "^18.19.67",
"@vitest/coverage-v8": "2.0.5",
"dependency-cruiser": "16.6.0",
"esbuild": "0.24.0",
"eslint": "9.9.0",
"pkg-pr-new": "^0.0.35",
"rollup-plugin-node-externals": "7.1.3",
"tsx": "4.16.5",
"typedoc": "0.27.3",
"typescript": "5.6.3",
"vite": "6.0.1",
"vite-plugin-dts": "4.0.3",
"vitest": "2.0.5"
},
"pnpm": {
"overrides": {
"eslint-plugin-import-x": "4.4.0",
"typescript": "5.6.3"
}
}
}