forked from lilBunnyRabbit/task-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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": "@lilbunnyrabbit/task-manager",
"version": "1.0.0",
"description": "A flexible and powerful task management system for managing asynchronous and synchronous tasks in TypeScript.",
"keywords": [
"node",
"npm",
"javascript",
"typescript",
"task",
"task-manager",
"asynchronous",
"task management"
],
"homepage": "https://github.com/lilBunnyRabbit/task-manager#readme",
"bugs": {
"url": "https://github.com/lilBunnyRabbit/task-manager/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lilBunnyRabbit/task-manager.git"
},
"license": "MIT",
"author": "Andraž Mesarič-Sirec <amesaricsirec@gmail.com>",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist & rimraf ./node_modules",
"prebuild": "rimraf ./dist",
"build": "tsc",
"test": "jest",
"changeset": "changeset",
"prerelease": "npm run build",
"release": "changeset publish",
"generate:docs": "typedoc"
},
"dependencies": {
"@lilbunnyrabbit/event-emitter": "^0.1.1",
"@lilbunnyrabbit/optional": "^1.0.0",
"@lilbunnyrabbit/utils": "^0.1.0",
"typedoc": "^0.27.6",
"uuid": "^11.0.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.14",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}