-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 898 Bytes
/
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
{
"name": "sync-actions",
"version": "1.1.0",
"type": "module",
"description": "A library for synchronously executing asynchronous operations with type-safe calls.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest --typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koyopro/sync-actions.git"
},
"bugs": {
"url": "https://github.com/koyopro/sync-actions/issues"
},
"homepage": "https://github.com/koyopro/sync-actions",
"keywords": [
"synchronize",
"worker_threads",
"sync",
"sync-actions"
],
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"dist"
],
"author": "koyopro",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}