-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@borderless/defer",
"version": "2.0.1",
"description": "Tiny, type-safe, JavaScript-native `defer` implementation.",
"keywords": [
"defer",
"go",
"dependency",
"async",
"typescript",
"promise",
"sync"
],
"homepage": "https://github.com/borderless/defer",
"bugs": {
"url": "https://github.com/borderless/defer/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/borderless/defer.git"
},
"license": "MIT",
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"type": "module",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"size": "size-limit",
"specs": "ts-scripts specs",
"test": "ts-scripts test && npm run size"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@size-limit/preset-small-lib": "^11.0.1",
"@types/node": "^20.10.4",
"@vitest/coverage-v8": "^1.0.4",
"size-limit": "^11.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "./dist/index.js",
"limit": "200 B"
}
],
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}