forked from DerYeger/yeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.2 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
52
53
54
55
56
{
"name": "@yeger/debounce",
"type": "module",
"version": "2.0.8",
"description": "A tiny TypeScript library for debouncing functions.",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"homepage": "https://github.com/DerYeger",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/debounce"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"debounce",
"typescript",
"library"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"files": [
"default.css",
"dist"
],
"scripts": {
"build": "vite build",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"dev": "vite build --watch",
"lint": "yeger-lint",
"test": "vitest"
},
"devDependencies": {
"@yeger/tsconfig": "workspace:*",
"typescript": "5.4.2",
"vite": "5.1.7",
"vite-plugin-lib": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}