jscpd-windows-x64-msvc 5.0.12
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 +21 -0
- package/README.md +28 -0
- package/bin/jscpd.exe +0 -0
- package/package.json +32 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2013-2024 Andrey Kucherenko
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# jscpd-windows-x64-msvc
|
|
2
|
+
|
|
3
|
+
Prebuilt Windows x64 binaries for jscpd.
|
|
4
|
+
|
|
5
|
+
This is an optional native binary package for
|
|
6
|
+
[cpd](https://www.npmjs.com/package/cpd) / [jscpd](https://www.npmjs.com/package/jscpd),
|
|
7
|
+
a fast Rust implementation of the copy/paste detector.
|
|
8
|
+
|
|
9
|
+
Do not install this package directly. Install the main package instead:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g jscpd
|
|
13
|
+
# or
|
|
14
|
+
npm install -g cpd
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This package contains only the native `jscpd` binary
|
|
18
|
+
for its target platform, plus package metadata and license/readme files.
|
|
19
|
+
|
|
20
|
+
Supply-chain notes:
|
|
21
|
+
|
|
22
|
+
- no runtime dependencies;
|
|
23
|
+
- no install scripts or postinstall downloads;
|
|
24
|
+
- published from the project GitHub Actions workflow with npm provenance
|
|
25
|
+
enabled;
|
|
26
|
+
- npm registry signatures and SLSA provenance can be checked with
|
|
27
|
+
`npm audit signatures` from an installed project.
|
|
28
|
+
|
package/bin/jscpd.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jscpd-windows-x64-msvc",
|
|
3
|
+
"version": "5.0.12",
|
|
4
|
+
"description": "Prebuilt Windows x64 binaries for jscpd",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/kucherenko/jscpd.git",
|
|
9
|
+
"directory": "rust"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"jscpd",
|
|
13
|
+
"prebuilt",
|
|
14
|
+
"native-binary",
|
|
15
|
+
"platform-package",
|
|
16
|
+
"win32-x64"
|
|
17
|
+
],
|
|
18
|
+
"os": [
|
|
19
|
+
"win32"
|
|
20
|
+
],
|
|
21
|
+
"cpu": [
|
|
22
|
+
"x64"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"bin",
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
}
|
|
32
|
+
}
|