-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "@escapace/deferred",
"description": "Deferred promise that exposes resolve() and reject() as methods, with synchronous access to settlement status",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/deferred/issues",
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@escapace/pnpm-pack": "0.9.1",
"@escapace/syncpack-configuration": "0.3.0",
"@ls-lint/ls-lint": "2.3.1",
"@vitest/coverage-v8": "4.1.8",
"eslint": "10.4.1",
"eslint-config-escapace": "5.19.1",
"esroll": "1.2.3",
"knip": "6.15.0",
"lefthook": "2.1.9",
"prettier": "3.8.3",
"prettier-config-escapace": "1.2.2",
"syncpack": "15.3.1",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vitest": "4.1.8"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"onFail": "warn",
"version": "^10.33.0"
}
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/neutral/index.js"
}
},
"files": [
"lib/neutral",
"lib/types"
],
"homepage": "https://github.com/escapace/deferred#readme",
"license": "MPL-2.0",
"module": "lib/neutral/index.js",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/deferred",
"scripts": {
"bench": "vitest bench --run --dir perf",
"build": "tsx scripts/build.ts",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier --no-error-on-unmatched-pattern -uw .",
"lint": "ls-lint --config .ls-lint.yaml && knip --no-config-hints && eslint",
"ls-lint": "ls-lint --config .ls-lint.yaml",
"pack": "pnpm-pack package --pack-destination lib",
"prepare": "lefthook install",
"syncpack": "syncpack fix && syncpack format",
"test": "vitest --no-watch --coverage",
"typecheck": "tsc --noEmit",
"update": "ncu --cooldown 7 -p pnpm -u --peer --dep dev,peer,prod,optional && pnpm run syncpack"
},
"sideEffects": false,
"type": "module",
"types": "lib/types/index.d.ts"
}