-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "clbk",
"version": "1.1.5",
"description": "A tiny function wrapper to add callbacks.",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "250 B"
}
],
"scripts": {
"test": "vitest run",
"build": "tsc --declaration && npx rollup dist/index.js --file dist/index.cjs --format cjs",
"size": "size-limit",
"lint": "tsc --noEmit",
"ci": "npm run lint && npm run build && npm run test && npm run size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wittrockscode/clbk.git"
},
"keywords": [
"clbk",
"callback",
"callbacks",
"ts",
"typescript",
"function"
],
"author": "Leonard Wittrock",
"license": "MIT",
"bugs": {
"url": "https://github.com/wittrockscode/clbk/issues"
},
"homepage": "https://github.com/wittrockscode/clbk#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.2",
"rollup": "^4.10.0",
"size-limit": "^11.0.2",
"vitest": "^1.3.0"
}
}