@book000/pixivts 0.1.0 → 0.1.2
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 +29 -0
- package/package.json +9 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Tomachi
|
|
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,29 @@
|
|
|
1
|
+
# pixivts
|
|
2
|
+
|
|
3
|
+
[pixiv](https://www.pixiv.net/) Unofficial API Library for TypeScript
|
|
4
|
+
|
|
5
|
+
This is NOT a fork of [@ibaraki-douji/pixivts](https://www.npmjs.com/package/@ibaraki-douji/pixivts). However, I do use it as a reference.
|
|
6
|
+
|
|
7
|
+
## 🚀 Install
|
|
8
|
+
|
|
9
|
+
If you are using npm:
|
|
10
|
+
|
|
11
|
+
```shell
|
|
12
|
+
npm install @book000/pixivts
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or if you are using yarn:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
yarn add @book000/pixivts
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## ✨ Features
|
|
22
|
+
|
|
23
|
+
- It mainly uses the private API that the iOS pixiv app communicates with. Inspired by [pixivpy](https://github.com/upbit/pixivpy).
|
|
24
|
+
- All API request methods return an [axios](https://www.npmjs.com/package/axios) response.
|
|
25
|
+
This allows this library users to use all responses, without having to wait for library updates if the API response changes.
|
|
26
|
+
|
|
27
|
+
## 📑 License
|
|
28
|
+
|
|
29
|
+
This project is licensed under the [MIT License](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@book000/pixivts",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "pixiv Unofficial API Library for TypeScript",
|
|
5
5
|
"homepage": "https://www.npmjs.com/package/@book000/pixivts",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/book000/pixivts/issues"
|
|
@@ -11,6 +11,13 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"pixiv",
|
|
16
|
+
"typescript",
|
|
17
|
+
"pixiv-app",
|
|
18
|
+
"pixiv-api",
|
|
19
|
+
"pixiv-app-api"
|
|
20
|
+
],
|
|
14
21
|
"main": "dist/index.js",
|
|
15
22
|
"types": "dist/index.d.ts",
|
|
16
23
|
"repository": "git@github.com:book000/node-utils.git",
|