-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 KB
/
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
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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pybridge-addon",
"version": "0.0.7",
"description": "Integration for Windows applications (Electron, etc.), enabling asynchronous calls to Python functions from Node.js, using Pybind11 and an independent C++ thread pool.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"preinstall": "npm run build:dependencies",
"postinstall": "npm prune --production",
"install": "npm run build:addon",
"build:ts": "rimraf dist && rollup -c",
"build:addon": "node-gyp rebuild && node src/script/copy.js",
"build": "npm run build:ts && npm run build:addon",
"build:dependencies": "npm i node-gyp",
"test": "nyc mocha -r ts-node/register 'tests/**/*.test.ts'",
"lint": "eslint src --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"dist/cjs/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"authors": [
"LogikMeister ([email protected])"
],
"keywords": [
"typescript",
"python",
"c++17",
"napi",
"node",
"pybind11"
],
"files": [
"dist",
"include",
"src/cpp",
"src/script",
"tests",
"binding.gyp",
"LICENSE"
],
"license": "MIT",
"gypfile": true,
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"node-gyp": "^9.4.0",
"nyc": "^15.1.0",
"prettier": "^2.8.2",
"rimraf": "^5.0.1",
"rollup": "^3.26.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LogikMeister/PyBridgeAddon.git"
},
"bugs": {
"url": "https://github.com/LogikMeister/PyBridgeAddon/issues"
},
"homepage": "https://github.com/LogikMeister/PyBridgeAddon"
}