-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "jispatcher",
"version": "0.9.4",
"description": "A modern Asynchronous JavaScript Dispatcher that protect your transactions.",
"main": "dist/index.js",
"module": "es/index.js",
"unpkg": "dist/jispatcher.umd.js",
"typings": "es/index.d.ts",
"files": [
"es",
"lib",
"dist"
],
"scripts": {
"build:lib": "tsc --project tsconfig.lib.json",
"build:es": "tsc --project tsconfig.es.json",
"build:umd": "tsc --project tsconfig.es.json",
"build:minified": "tsc --project tsconfig.base.json && MINIFIED=1 vite build",
"build:dist": "tsc --noEmit --project tsconfig.base.json && vite build",
"build": "npm run build:lib && npm run build:es && npm run build:dist",
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"Dispatcher",
"async",
"Promise",
"Asynchronous",
"Thread safe",
"High Concurrency"
],
"author": "zsh2401",
"license": "MIT",
"repository": {
"url": "https://github.com/zsh2401/jispatcher"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"husky": "^8.0.0"
}
}