-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "magic-aborter",
"version": "0.0.3",
"description": "An magic util to control everything abortable",
"homepage": "https://github.com/noootwo/magic-aborter",
"bugs": "https://github.com/noootwo/magic-aborter/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:noootwo/magic-aborter.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm",
"clean": "rimraf dist",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm run build && bumpp -x \"pnpm run changelog\""
},
"keywords": [
"aborter"
],
"author": "noootwo",
"license": "MIT",
"dependencies": {
"mitt": "^3.0.1"
},
"devDependencies": {
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}