-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 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
{
"name": "@robinw151/resolver",
"version": "0.4.0",
"description": "A dependency-aware task resolver using RxJS observables for asynchronous execution",
"author": "Robin Wunderbaldinger",
"license": "MIT",
"homepage": "https://github.com/Robin-w151/resolver",
"repository": {
"type": "git",
"url": "git+https://github.com/Robin-w151/resolver.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*.{mjs,cjs}",
"dist/**/*.d.{mts,cts}",
"dist/**/*.map",
"README.md",
"LICENSE"
],
"keywords": [
"rxjs",
"dependency",
"resolver",
"async",
"observable",
"typescript",
"task",
"execution"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"format": "prettier --check **/*.ts",
"lint": "eslint --no-warn-ignored **/*.ts",
"test": "vitest run && tsc --noEmit --project tests/tsconfig.json",
"test:watch": "vitest watch",
"benchmark": "vitest bench --run",
"benchmark:watch": "vitest bench --watch",
"check": "pnpm format && pnpm lint && pnpm test",
"prepack": "pnpm build && clean-package",
"postpack": "clean-package restore",
"prepare": "husky"
},
"peerDependencies": {
"rxjs": "^7.8.2"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@types/node": "24.12.2",
"@vitest/browser-playwright": "4.1.5",
"@vitest/coverage-v8": "4.1.5",
"clean-package": "2.2.0",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"prettier": "3.8.1",
"tsdown": "0.21.7",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0",
"vitest": "4.1.5"
},
"pnpm": {
"overrides": {
"glob": "^11.1.0"
}
},
"packageManager": "pnpm@10.33.2",
"clean-package": {
"remove": [
"clean-package",
"devDependencies",
"packageManager",
"scripts"
]
}
}