-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.85 KB
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
70
71
72
73
{
"name": "@nasriya/overwatch",
"version": "1.1.4",
"description": "A high-performance, dependency-free file system watcher that monitors file and directory changes efficiently across platforms.",
"keywords": [
"file watcher",
"filesystem watcher",
"file system",
"watch files",
"watcher",
"nodejs",
"file change",
"fs watch",
"cross-platform",
"node",
"file monitor",
"file system events",
"watch files and folders",
"file change detection"
],
"type": "module",
"main": "./dist/cjs/overwatch.js",
"module": "./dist/esm/overwatch.js",
"types": "./dist/@types/overwatch.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/overwatch.js",
"require": "./dist/cjs/overwatch.js",
"types": "./dist/@types/overwatch.d.ts"
}
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"postbuild-init": "postbuild-init",
"test": "jest --detectOpenHandles"
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "ahmad@nasriya.net",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"repository": {
"type": "github",
"url": "https://github.com/nasriyasoftware/Overwatch"
},
"bugs": {
"url": "https://github.com/nasriyasoftware/Overwatch/issues"
},
"homepage": "https://package.nasriya.net/Overwatch",
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
},
"license": "NOL-1",
"author": "Nasriya Software",
"devDependencies": {
"@nasriya/postbuild": "^1.1.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"jest": "^30.0.3",
"ts-jest": "^29.4.0"
},
"dependencies": {
"@nasriya/atomix": "^1.0.1"
}
}