-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 806 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 806 Bytes
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
{
"author": {
"name": "Edenilson Lisboa",
"url": "https://github.com/EdenwareApps"
},
"dependencies": {
"cross-dirname": "^0.1.0",
"koffi": "^2.11.0"
},
"description": "Interface for interacting with the Bright SDK (formerly Luminati SDK) on Node.js/NW.js/Electron applications.",
"homepage": "https://github.com/EdenwareApps/node-bright-sdk/",
"license": "MIT",
"main": "./lib/main.cjs",
"name": "node-bright-sdk",
"version": "1.1.1",
"scripts": {
"prepare": "npx babel lib/main.mjs --out-file dist/main.cjs"
},
"type": "module",
"exports": {
".": {
"require": "./dist/main.cjs",
"import": "./lib/main.mjs"
}
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2"
}
}