-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.26 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.26 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
{
"name": "@helpers4/helpers4",
"version": "2.0.0-alpha.11",
"author": "baxyz <baxy@etik.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/helpers4/typescript.git"
},
"description": "A set of helpers in TS/JS, compatible with tree-shaking, which helps you to manipulate URL, Observable, Promise, ...",
"keywords": [
"helper",
"typescript",
"tree-shaking",
"URL",
"remove-ending-slash",
"add-leading-slash",
"extract-pure-uri",
"string",
"capitalize",
"promise",
"meaningPromiseOrThrow",
"observable",
"combine"
],
"license": "LGPL-3.0",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsx scripts/build/index.ts",
"lint": "oxlint --fix",
"format": "oxlint --fix",
"typecheck": "tsgo --noEmit",
"coherency": "tsx scripts/coherency/index.ts",
"coherency:bundle": "tsx scripts/coherency/bundle/index.ts",
"coherency:version": "tsx scripts/coherency/version/index.ts",
"coherency:category": "tsx scripts/coherency/category/index.ts",
"coherency:dependencies": "tsx scripts/coherency/dependencies/index.ts",
"coherency:sizes": "tsx scripts/coherency/sizes/index.ts",
"version:patch": "tsx scripts/version/version-manager.ts patch",
"version:minor": "tsx scripts/version/version-manager.ts minor",
"version:major": "tsx scripts/version/version-manager.ts major",
"version:prerelease": "tsx scripts/version/version-manager.ts prerelease",
"version:auto": "tsx scripts/version/version-manager.ts --auto",
"version:auto-dry": "tsx scripts/version/version-manager.ts --auto --dry-run",
"release:patch": "tsx scripts/version/release.ts patch",
"release:minor": "tsx scripts/version/release.ts minor",
"release:major": "tsx scripts/version/release.ts major",
"release:prerelease": "tsx scripts/version/release.ts prerelease",
"release:auto": "tsx scripts/version/release.ts --auto",
"release:dry-run": "tsx scripts/version/release.ts patch --dry-run",
"release:validate": "tsx scripts/version/pre-release-validator.ts",
"publish:packages": "tsx scripts/publish/index.ts",
"publish:dry-run": "tsx scripts/publish/index.ts --dry-run",
"examples": "tsx scripts/examples/index.ts",
"smoke": "tsx scripts/examples/smoke.ts",
"mutation": "stryker run",
"mutation:category": "stryker run --mutate"
},
"type": "module",
"dependencies": {
"rxjs": "^7.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260413.1",
"@vitest/coverage-v8": "^4.1.4",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"happy-dom": "^20.8.9",
"oxlint": "^1.59.0",
"radashi": "^12.7.2",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"tsx": "^4.19.2",
"typedoc": "^0.28.19",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"engines": {
"node": ">=24.0.0"
}
}