-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "@escapace/with-promise",
"description": "Cancellable Promises and async task controller implementing latest-wins semantics with automatic cancellation and deduplication",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/with-promise/issues",
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@escapace/pnpm-pack": "0.8.0",
"@ls-lint/ls-lint": "2.3.1",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.34.0",
"eslint-config-escapace": "5.14.0",
"esroll": "0.4.5",
"knip": "5.63.0",
"lefthook": "1.12.3",
"prettier": "3.6.2",
"prettier-config-escapace": "1.2.2",
"syncpack": "13.0.4",
"tsx": "4.20.4",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"engines": {
"pnpm": "^10.14.0"
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/neutral/index.js"
}
},
"files": [
"lib/neutral",
"lib/types"
],
"homepage": "https://github.com/escapace/with-promise#readme",
"license": "MPL-2.0",
"module": "lib/neutral/index.js",
"peerDependencies": {
"@escapace/deferred": "^1.1.1",
"@escapace/fsm": "^4.2.0",
"coastal": "^0.2.1"
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/with-promise",
"scripts": {
"build": "tsx scripts/build.ts",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier -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-mismatches && syncpack set-semver-ranges && syncpack format",
"test": "vitest --no-watch --coverage",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"types": "lib/types/index.d.ts"
}