xrootd 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE-GPLv3 +674 -0
- package/LICENSE-MIT +7 -0
- package/README.md +23 -0
- package/dist/index.cjs +672 -0
- package/dist/index.d.cts +454 -0
- package/dist/index.d.mts +454 -0
- package/dist/index.mjs +641 -0
- package/libs/linux-x64/libXrdCl.so.6 +0 -0
- package/libs/linux-x64/libXrdCrypto.so.6 +0 -0
- package/libs/linux-x64/libXrdCryptossl-6.so +0 -0
- package/libs/linux-x64/libXrdSec-6.so +0 -0
- package/libs/linux-x64/libXrdSecProt-6.so +0 -0
- package/libs/linux-x64/libXrdSeckrb5-6.so +0 -0
- package/libs/linux-x64/libXrdSecpwd-6.so +0 -0
- package/libs/linux-x64/libXrdSecsss-6.so +0 -0
- package/libs/linux-x64/libXrdSecunix-6.so +0 -0
- package/libs/linux-x64/libXrdSecztn-6.so +0 -0
- package/libs/linux-x64/libXrdUtils.so.6 +0 -0
- package/libs/linux-x64/libXrdXml.so.6 +0 -0
- package/package.json +84 -0
- package/prebuilds/linux-x64/xrootd.node +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xrootd",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Prebuilt Node.js Native Addon for XRootD, allowing JS access to EOS file systems",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"require": {
|
|
8
|
+
"types": "./dist/index.d.cts",
|
|
9
|
+
"default": "./dist/index.cjs"
|
|
10
|
+
},
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.mts",
|
|
13
|
+
"default": "./dist/index.mjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"main": "dist/index.cjs",
|
|
17
|
+
"types": "dist/index.d.cts",
|
|
18
|
+
"module": "dist/index.mjs",
|
|
19
|
+
"license": "MIT AND GPL-3.0-or-later",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/Wu-Yijun/xrootd.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/Wu-Yijun/xrootd/issues"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"xrootd",
|
|
29
|
+
"eos",
|
|
30
|
+
"hep",
|
|
31
|
+
"native-addon",
|
|
32
|
+
"napi",
|
|
33
|
+
"c++",
|
|
34
|
+
"bindings"
|
|
35
|
+
],
|
|
36
|
+
"author": "Aluria",
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=20.0.0"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"libs",
|
|
45
|
+
"prebuilds",
|
|
46
|
+
"dist",
|
|
47
|
+
"package.json",
|
|
48
|
+
"README.md",
|
|
49
|
+
"LICENSE-GPLv3",
|
|
50
|
+
"LICENSE-MIT"
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"node-gyp-build": "^4.8.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/node": "^25.8.0",
|
|
57
|
+
"node-addon-api": "^8.7.0",
|
|
58
|
+
"prebuildify": "^6.0.0",
|
|
59
|
+
"tsdown": "^0.22.0",
|
|
60
|
+
"typescript": "^6.0.0",
|
|
61
|
+
"unrun": "^0.3.0"
|
|
62
|
+
},
|
|
63
|
+
"os": [
|
|
64
|
+
"linux",
|
|
65
|
+
"darwin"
|
|
66
|
+
],
|
|
67
|
+
"cpu": [
|
|
68
|
+
"x64",
|
|
69
|
+
"arm64"
|
|
70
|
+
],
|
|
71
|
+
"gypfile": false,
|
|
72
|
+
"scripts": {
|
|
73
|
+
"install": "echo 'Skip implicit node-gyp rebuild. Handled by explicit build.'",
|
|
74
|
+
"build:tsc": "tsc --noEmit",
|
|
75
|
+
"build:ts": "tsdown",
|
|
76
|
+
"build:addon": "node-gyp rebuild",
|
|
77
|
+
"build:binaries": "prebuildify --napi --strip",
|
|
78
|
+
"build": "pnpm run build:addon && pnpm run build:binaries && pnpm run build:tsc && pnpm run build:ts",
|
|
79
|
+
"build:clean": "rm -r ./build && pnpm run build",
|
|
80
|
+
"pack": "mkdir -p packages && pnpm pack --pack-destination ./packages",
|
|
81
|
+
"test:prep": "unrun ./test/prepare.ts",
|
|
82
|
+
"test": "node --test test/*.mjs"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
Binary file
|