-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
{
"name": "one-promise",
"version": "0.1.0",
"description": "A tiny utility for tracking the most recently created promise",
"keywords": [
"async",
"promise"
],
"homepage": "https://github.com/camsteffen/one-promise#readme",
"bugs": {
"url": "https://github.com/camsteffen/one-promise/issues"
},
"license": "MIT",
"author": "Cameron Steffen",
"files": [
"dist",
"src"
],
"type": "module",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camsteffen/one-promise.git"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "tsup",
"format": "prettier --write .",
"lint": "eslint --ignore-path .gitignore .",
"test": "vitest"
},
"tsup": {
"clean": true,
"dts": true,
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"minify": true,
"sourcemap": true,
"splitting": false
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
}
}