mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
add PDFLib package
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good
This commit is contained in:
parent
b3ea32f4bc
commit
e8aa62735a
7
PDFLib/README.md
Normal file
7
PDFLib/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# PDFLib
|
||||||
|
Create and modify PDF documents in any JavaScript environment.
|
||||||
|
(Not to be confused wtih PDF.js which is for PDF rendering)
|
||||||
|
|
||||||
|
https://pdf-lib.js.org/
|
||||||
|
|
||||||
|
This package is the AntOS wrapper of the PDFLib version 1.17.1
|
45
PDFLib/build.json
Normal file
45
PDFLib/build.json
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"name": "PDFLib",
|
||||||
|
"targets":{
|
||||||
|
"clean": {
|
||||||
|
"jobs": [
|
||||||
|
{
|
||||||
|
"name": "vfs-rm_no_error",
|
||||||
|
"data": ["build/debug","build/release"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "vfs-mkdir",
|
||||||
|
"data": ["build/debug","build/release"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"copy": {
|
||||||
|
"jobs": [
|
||||||
|
{
|
||||||
|
"name": "vfs-cp",
|
||||||
|
"data": {
|
||||||
|
"src": [
|
||||||
|
"main.js",
|
||||||
|
"package.json",
|
||||||
|
"README.md"
|
||||||
|
],
|
||||||
|
"dest":"build/debug"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"release": {
|
||||||
|
"depend": ["clean", "copy"],
|
||||||
|
"require": ["zip"],
|
||||||
|
"jobs": [
|
||||||
|
{
|
||||||
|
"name": "zip-mk",
|
||||||
|
"data": {
|
||||||
|
"src":"build/debug",
|
||||||
|
"dest":"build/release/PDFLib.zip"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
7
PDFLib/build/debug/README.md
Normal file
7
PDFLib/build/debug/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# PDFLib
|
||||||
|
Create and modify PDF documents in any JavaScript environment.
|
||||||
|
(Not to be confused wtih PDF.js which is for PDF rendering)
|
||||||
|
|
||||||
|
https://pdf-lib.js.org/
|
||||||
|
|
||||||
|
This package is the AntOS wrapper of the PDFLib version 1.17.1
|
16
PDFLib/build/debug/main.js
Normal file
16
PDFLib/build/debug/main.js
Normal file
File diff suppressed because one or more lines are too long
15
PDFLib/build/debug/package.json
Normal file
15
PDFLib/build/debug/package.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"pkgname": "PDFLib",
|
||||||
|
"name":"PDFLib",
|
||||||
|
"description":"Create and modify PDF documents in any JavaScript environment",
|
||||||
|
"info":{
|
||||||
|
"author": "pdf-lib.js.org",
|
||||||
|
"email": ""
|
||||||
|
},
|
||||||
|
"version":"1.17.1",
|
||||||
|
"category":"Library",
|
||||||
|
"iconclass":"fa fa-cog",
|
||||||
|
"mimes":["none"],
|
||||||
|
"dependencies":[],
|
||||||
|
"locale": {}
|
||||||
|
}
|
BIN
PDFLib/build/release/PDFLib.zip
Normal file
BIN
PDFLib/build/release/PDFLib.zip
Normal file
Binary file not shown.
16
PDFLib/main.js
Normal file
16
PDFLib/main.js
Normal file
File diff suppressed because one or more lines are too long
15
PDFLib/package.json
Normal file
15
PDFLib/package.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"pkgname": "PDFLib",
|
||||||
|
"name":"PDFLib",
|
||||||
|
"description":"Create and modify PDF documents in any JavaScript environment",
|
||||||
|
"info":{
|
||||||
|
"author": "pdf-lib.js.org",
|
||||||
|
"email": ""
|
||||||
|
},
|
||||||
|
"version":"1.17.1",
|
||||||
|
"category":"Library",
|
||||||
|
"iconclass":"fa fa-cog",
|
||||||
|
"mimes":["none"],
|
||||||
|
"dependencies":[],
|
||||||
|
"locale": {}
|
||||||
|
}
|
@ -329,6 +329,16 @@
|
|||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/OnlyOffice/build/release/OnlyOffice.zip"
|
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/OnlyOffice/build/release/OnlyOffice.zip"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"pkgname": "PDFLib",
|
||||||
|
"name": "PDFLib",
|
||||||
|
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/PDFLib/README.md",
|
||||||
|
"category": "Library",
|
||||||
|
"author": "pdf-lib.js.org",
|
||||||
|
"version": "1.17.1",
|
||||||
|
"dependencies": [],
|
||||||
|
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/PDFLib/build/release/PDFLib.zip"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"pkgname": "Preview",
|
"pkgname": "Preview",
|
||||||
"name": "Preview",
|
"name": "Preview",
|
||||||
|
7
release/PDFLib.md
Normal file
7
release/PDFLib.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# PDFLib
|
||||||
|
Create and modify PDF documents in any JavaScript environment.
|
||||||
|
(Not to be confused wtih PDF.js which is for PDF rendering)
|
||||||
|
|
||||||
|
https://pdf-lib.js.org/
|
||||||
|
|
||||||
|
This package is the AntOS wrapper of the PDFLib version 1.17.1
|
BIN
release/PDFLib.zip
Normal file
BIN
release/PDFLib.zip
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user