This repository was archived by the owner on Dec 11, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.64 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.64 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
{
"name": "unuse-monorepo",
"version": "1.0.0",
"description": "Monorepo for unuse packages",
"scripts": {
"clean": "git clean -fdx",
"build": "pnpm -r build",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content .",
"docs:build": "pnpm --filter unuse-docs run build",
"docs:dev": "pnpm --filter unuse-docs run dev",
"example:angular": "pnpm --filter angular-example run dev",
"example:react": "pnpm --filter react-example run dev",
"example:solid": "pnpm --filter solid-example run dev",
"example:vue": "pnpm --filter vue-example run dev",
"ts-check": "tsc && pnpm -r ts-check",
"test": "vitest",
"test:playwright": "pnpm -r test:playwright",
"test:playwright:angular": "pnpm --filter angular-example test:playwright",
"test:playwright:react": "pnpm --filter react-example test:playwright",
"test:playwright:solid": "pnpm --filter solid-example test:playwright",
"test:playwright:vue": "pnpm --filter vue-example test:playwright",
"coverage": "vitest --coverage",
"preflight": "pnpm install && run-s format build lint test ts-check",
"release": "pnpm build && changeset publish"
},
"private": true,
"homepage": "https://github.com/un-ts/unuse",
"bugs": {
"url": "https://github.com/un-ts/unuse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/un-ts/unuse.git"
},
"license": "MIT",
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"type": "module",
"devDependencies": {
"@arethetypeswrong/core": "0.18.2",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.5",
"@eslint/compat": "1.3.1",
"@eslint/config-helpers": "0.3.0",
"@eslint/js": "9.31.0",
"@playwright/test": "1.54.1",
"@stylistic/eslint-plugin": "5.2.2",
"@types/node": "24.0.15",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "1.3.4",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-prettier": "5.5.3",
"eslint-plugin-unicorn": "59.0.1",
"jiti": "2.4.2",
"npm-run-all2": "8.0.4",
"pkg-types": "2.2.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-pkg": "0.21.2",
"publint": "0.3.12",
"tsdown": "0.12.9",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0",
"unplugin-unused": "0.5.1",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.11.0"
}
}