@bingran/sbti-cli-win32-x64 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 +21 -0
- package/NOTICE +13 -0
- package/README.md +9 -0
- package/bin/sbti-cli.exe +0 -0
- package/index.cjs +3 -0
- package/package.json +28 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Bingran You
|
|
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/NOTICE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
This repository includes original code and documentation authored for `sbti-cli`,
|
|
2
|
+
which are released under the MIT License in `LICENSE`.
|
|
3
|
+
|
|
4
|
+
This repository may also contain third-party content derived from the upstream
|
|
5
|
+
SBTI website at https://sbti.fancc.de5.net/, including but not limited to:
|
|
6
|
+
|
|
7
|
+
- survey prompts
|
|
8
|
+
- result descriptions
|
|
9
|
+
- extracted character artwork / poster images
|
|
10
|
+
|
|
11
|
+
Those upstream materials remain subject to their original ownership and are not
|
|
12
|
+
relicensed by this repository unless the original rights holder states
|
|
13
|
+
otherwise.
|
package/README.md
ADDED
package/bin/sbti-cli.exe
ADDED
|
Binary file
|
package/index.cjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bingran/sbti-cli-win32-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Native-binary CLI runner for the public SBTI survey. (win32/x64)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/bingran-you/sbti-cli",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/bingran-you/sbti-cli.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/bingran-you/sbti-cli/issues"
|
|
13
|
+
},
|
|
14
|
+
"os": [
|
|
15
|
+
"win32"
|
|
16
|
+
],
|
|
17
|
+
"cpu": [
|
|
18
|
+
"x64"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"bin",
|
|
22
|
+
"index.cjs",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"NOTICE",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"main": "./index.cjs"
|
|
28
|
+
}
|