-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.29 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.29 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@tanstack/angular-pacer",
"version": "0.21.0",
"description": "Utilities for debouncing and throttling functions in Angular.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/pacer.git",
"directory": "packages/angular-pacer"
},
"homepage": "https://tanstack.com/pacer",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"angular",
"debounce",
"throttle",
"rate-limit",
"queue",
"async",
"signals"
],
"scripts": {
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"build": "tsdown"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./async-batcher": {
"import": "./dist/async-batcher/index.js",
"require": "./dist/async-batcher/index.cjs"
},
"./async-debouncer": {
"import": "./dist/async-debouncer/index.js",
"require": "./dist/async-debouncer/index.cjs"
},
"./async-queuer": {
"import": "./dist/async-queuer/index.js",
"require": "./dist/async-queuer/index.cjs"
},
"./async-rate-limiter": {
"import": "./dist/async-rate-limiter/index.js",
"require": "./dist/async-rate-limiter/index.cjs"
},
"./async-retryer": {
"import": "./dist/async-retryer/index.js",
"require": "./dist/async-retryer/index.cjs"
},
"./async-throttler": {
"import": "./dist/async-throttler/index.js",
"require": "./dist/async-throttler/index.cjs"
},
"./batcher": {
"import": "./dist/batcher/index.js",
"require": "./dist/batcher/index.cjs"
},
"./debouncer": {
"import": "./dist/debouncer/index.js",
"require": "./dist/debouncer/index.cjs"
},
"./provider": {
"import": "./dist/provider/index.js",
"require": "./dist/provider/index.cjs"
},
"./queuer": {
"import": "./dist/queuer/index.js",
"require": "./dist/queuer/index.cjs"
},
"./rate-limiter": {
"import": "./dist/rate-limiter/index.js",
"require": "./dist/rate-limiter/index.cjs"
},
"./throttler": {
"import": "./dist/throttler/index.js",
"require": "./dist/throttler/index.cjs"
},
"./types": {
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
},
"./utils": {
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/angular-store": "^0.8.1",
"@tanstack/pacer": "workspace:*"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.2.3",
"@analogjs/vitest-angular": "^2.2.3",
"@angular/compiler": "^21.1.4",
"@angular/core": "^21.1.4",
"@types/node": "^25.2.3",
"jsdom": "^28.1.0"
},
"peerDependencies": {
"@angular/core": ">=17.0.0"
}
}