@spotterjs/node-win32-x64-msvc 0.1.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/LICENSE ADDED
@@ -0,0 +1,69 @@
1
+ spotterjs License 1.0
2
+
3
+ Copyright (c) 2026 spotterjs Contributors
4
+
5
+ Permission is granted, free of charge, to any person obtaining a copy of this
6
+ software and associated documentation files (the "Software"), to use the
7
+ Software subject to the terms below.
8
+
9
+ 1. Permitted Use Without Commercial Authorization
10
+
11
+ You may use, copy, modify, and distribute the Software without prior written
12
+ approval from the copyright holder for the following non-commercial purposes
13
+ only:
14
+
15
+ (a) Personal learning and skill development;
16
+ (b) Classroom teaching and academic coursework;
17
+ (c) Non-commercial research, experimentation, and evaluation;
18
+ (d) Contributing to or developing the Software in a public source repository,
19
+ provided such use remains non-commercial.
20
+
21
+ 2. Commercial Use Requires Authorization
22
+
23
+ "Commercial Use" means any use of the Software (including incorporation,
24
+ distribution, or operation) in connection with activities intended to generate
25
+ revenue or commercial advantage, including but not limited to:
26
+
27
+ (a) Products or services offered for a fee;
28
+ (b) Software-as-a-Service (SaaS) or hosted automation offerings;
29
+ (c) Internal production or operational systems of a for-profit entity;
30
+ (d) Delivery of automation solutions to paying clients or customers;
31
+ (e) Sublicensing the Software for a fee.
32
+
33
+ Commercial Use is permitted only after obtaining explicit written authorization
34
+ from the copyright holder. Until such authorization is granted, Commercial Use
35
+ is not permitted.
36
+
37
+ To request commercial authorization, contact:
38
+
39
+ Email: ypl123698745@qq.com
40
+ Gitee Issues: https://gitee.com/ypl0lpy/spotterjs/issues
41
+
42
+ 3. Redistribution
43
+
44
+ You may redistribute unmodified or modified copies of the Software only for
45
+ Permitted Use under Section 1, or for Commercial Use that has been authorized
46
+ under Section 2. Redistributions must include a copy of this license and retain
47
+ copyright notices.
48
+
49
+ 4. Reserved Rights
50
+
51
+ The copyright holder reserves all rights not expressly granted herein,
52
+ including rights in trademarks and branding associated with "spotterjs". No
53
+ patent rights are granted by this license.
54
+
55
+ 5. Disclaimer
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
59
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
60
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
61
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
62
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
63
+ SOFTWARE.
64
+
65
+ 6. License Updates
66
+
67
+ New versions of this license apply to Software obtained after the license
68
+ update is published. Commercial authorizations granted under a prior version
69
+ remain valid according to the terms agreed at the time of authorization.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @spotterjs/node-win32-x64-msvc
2
+
3
+ Windows x64 native binary for `@spotterjs/node`.
4
+
5
+ Install `@spotterjs/node` or `@spotterjs/core` instead of depending on this package directly.
Binary file
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@spotterjs/node-win32-x64-msvc",
3
+ "version": "0.1.0",
4
+ "description": "Windows x64 native binary for @spotterjs/node",
5
+ "main": "index.win32-x64-msvc.node",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://gitee.com/ypl0lpy/spotterjs.git",
10
+ "directory": "crates/spotterjs-node/win32-x64-msvc"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public",
14
+ "registry": "https://registry.npmjs.org/"
15
+ },
16
+ "files": [
17
+ "index.win32-x64-msvc.node",
18
+ "LICENSE",
19
+ "README.md"
20
+ ],
21
+ "os": [
22
+ "win32"
23
+ ],
24
+ "cpu": [
25
+ "x64"
26
+ ],
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "scripts": {
31
+ "prepublishOnly": "node ../../../scripts/prepare-native-package.mjs win32-x64-msvc"
32
+ }
33
+ }