@pyannote-cpp-node/win32-x64 0.0.0-stub.0
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/build/Release/pyannote-addon.node +1 -0
- package/index.js +1 -0
- package/package.json +30 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bootstrap placeholder package for npm trusted publishing
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./build/Release/pyannote-addon.node');
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pyannote-cpp-node/win32-x64",
|
|
3
|
+
"version": "0.0.0-stub.0",
|
|
4
|
+
"os": [
|
|
5
|
+
"win32"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "./index.js",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=18"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"build/Release/pyannote-addon.node",
|
|
17
|
+
"build/Release/*.dll"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "node ../../scripts/run-platform-build.js win32 x64 build",
|
|
24
|
+
"clean": "node ../../scripts/run-platform-build.js win32 x64 clean"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"cmake-js": "^7.3.0",
|
|
28
|
+
"node-addon-api": "^8.3.0"
|
|
29
|
+
}
|
|
30
|
+
}
|