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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
| {
| "_from": "@electron/rebuild@^3.2.13",
| "_id": "@electron/rebuild@3.6.0",
| "_inBundle": false,
| "_integrity": "sha512-zF4x3QupRU3uNGaP5X1wjpmcjfw1H87kyqZ00Tc3HvriV+4gmOGuvQjGNkrJuXdsApssdNyVwLsy+TaeTGGcVw==",
| "_location": "/@electron/rebuild",
| "_phantomChildren": {},
| "_requested": {
| "type": "range",
| "registry": true,
| "raw": "@electron/rebuild@^3.2.13",
| "name": "@electron/rebuild",
| "escapedName": "@electron%2frebuild",
| "scope": "@electron",
| "rawSpec": "^3.2.13",
| "saveSpec": null,
| "fetchSpec": "^3.2.13"
| },
| "_requiredBy": [
| "#DEV:/"
| ],
| "_resolved": "https://registry.npmmirror.com/@electron/rebuild/-/rebuild-3.6.0.tgz",
| "_shasum": "60211375a5f8541a71eb07dd2f97354ad0b2b96f",
| "_spec": "@electron/rebuild@^3.2.13",
| "_where": "/Users/xiongbenda/Desktop/中葡数字/黑河卡口项目/IC_RW",
| "author": {
| "name": "Paul Betts",
| "email": "paul@paulbetts.org"
| },
| "bin": {
| "electron-rebuild": "lib/cli.js"
| },
| "bugs": {
| "url": "https://github.com/electron/rebuild/issues"
| },
| "bundleDependencies": false,
| "dependencies": {
| "@malept/cross-spawn-promise": "^2.0.0",
| "chalk": "^4.0.0",
| "debug": "^4.1.1",
| "detect-libc": "^2.0.1",
| "fs-extra": "^10.0.0",
| "got": "^11.7.0",
| "node-abi": "^3.45.0",
| "node-api-version": "^0.2.0",
| "node-gyp": "^9.0.0",
| "ora": "^5.1.0",
| "read-binary-file-arch": "^1.0.6",
| "semver": "^7.3.5",
| "tar": "^6.0.5",
| "yargs": "^17.0.1"
| },
| "deprecated": false,
| "description": "Electron supporting package to rebuild native node modules against the currently installed electron",
| "devDependencies": {
| "@istanbuljs/nyc-config-typescript": "^1.0.1",
| "@types/chai": "^4.2.12",
| "@types/chai-as-promised": "^7.1.3",
| "@types/debug": "^4.1.5",
| "@types/fs-extra": "^9.0.1",
| "@types/mocha": "^9.0.0",
| "@types/node": "^17.0.8",
| "@types/node-abi": "^3.0.0",
| "@types/semver": "^7.3.9",
| "@types/tar": "^6.1.0",
| "@types/yargs": "^17.0.2",
| "@typescript-eslint/eslint-plugin": "^4.0.1",
| "@typescript-eslint/parser": "^4.0.1",
| "chai": "^4.2.0",
| "chai-as-promised": "^7.1.1",
| "codecov": "^3.7.2",
| "cross-env": "^7.0.2",
| "electron": "^22.0.0",
| "eslint": "^7.7.0",
| "eslint-plugin-mocha": "^9.0.0",
| "mocha": "^9.0.1",
| "nyc": "^15.1.0",
| "ts-node": "^10.0.0",
| "typescript": "^4.0.2"
| },
| "engines": {
| "node": ">=12.13.0"
| },
| "eslintConfig": {
| "parser": "@typescript-eslint/parser",
| "parserOptions": {
| "ecmaVersion": 2019,
| "sourceType": "module"
| },
| "plugins": [
| "mocha",
| "@typescript-eslint"
| ],
| "env": {
| "es6": true,
| "mocha": true,
| "node": true
| },
| "extends": [
| "eslint:recommended",
| "plugin:@typescript-eslint/recommended"
| ],
| "rules": {
| "mocha/no-exclusive-tests": "error",
| "no-unused-vars": "off",
| "@typescript-eslint/no-unused-vars": [
| "error",
| {
| "args": "after-used",
| "argsIgnorePattern": "^_",
| "ignoreRestSiblings": true,
| "vars": "all"
| }
| ]
| }
| },
| "eslintIgnore": [
| "*.d.ts",
| "node_modules"
| ],
| "files": [
| "lib"
| ],
| "homepage": "https://github.com/electron/rebuild",
| "keywords": [
| "electron"
| ],
| "license": "MIT",
| "main": "lib/main.js",
| "mocha": {
| "extensions": [
| "ts"
| ],
| "require": "ts-node/register"
| },
| "name": "@electron/rebuild",
| "nyc": {
| "extends": "@istanbuljs/nyc-config-typescript"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/electron/rebuild.git"
| },
| "scripts": {
| "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
| "compile": "tsc",
| "coverage": "npm run prewarm-headers && nyc npm run spec",
| "lint": "eslint --ext .ts .",
| "mocha": "cross-env TS_NODE_FILES=true mocha",
| "prepare": "npm run compile",
| "prewarm-headers": "node-gyp install --ensure",
| "spec": "tsc && npm run mocha -- test/*.ts",
| "test": "npm run prewarm-headers && npm run lint && npm run spec",
| "watch": "tsc -w"
| },
| "typings": "lib/main.d.ts",
| "version": "3.6.0"
| }
|
|