Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"version": "2.3.15",
"name": "survey-pdf",
"scripts": {
"start": "npm run build && http-server --port=7777",
"serve": "http-server --port=7777",
Expand All @@ -20,9 +22,6 @@
"type": "git",
"url": "https://github.com/surveyjs/survey-pdf.git"
},
"version": "2.3.15",
"name": "survey-pdf",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"jspdf": "^3.0.1",
"node-interval-tree": "^1.3.3",
Expand Down
30 changes: 26 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,39 @@ const year = today.getFullYear();
var banner = [
"surveyjs - SurveyJS PDF library v" + packageJson.version,
"Copyright (c) 2015-" + year + " Devsoft Baltic OÜ - http://surveyjs.io/",
"License: MIT (http://www.opensource.org/licenses/mit-license.php)"
"License: SEE LICENSE IN LICENSE"
].join("\n");

const buildPlatformJson = {
name: "survey-pdf",
version: packageJson.version,
description:
"survey.pdf.js is a SurveyJS PDF Library. It is a easy way to export SurveyJS surveys to PDF. It uses JSON for survey metadata.",
keywords: ["Survey", "JavaScript", "PDF", "Library", "pdf"],
homepage: "https://surveyjs.io/",
author: "DevSoft Baltic OÜ <[email protected]>",
license: "SEE LICENSE IN LICENSE",
licenseUrl: "https://surveyjs.io/licensing",
description: "A UI component that uses SurveyJS form JSON schemas to render forms as PDF documents. It populates PDF fields with data collected using SurveyJS Form Library and lets you export your SurveyJS forms as editable or pre-filled PDFs.",
keywords: [
"survey",
"surveyjs",
"pdf",
"form",
"survey-export",
"pdf-generator",
"pdf-export",
"interactive-pdf-form",
"json-form",
"data-collection",
"client-side",
"javascript",
"typescript",
"survey-library",
"export-form",
"print-form",
"editable-pdf",
"fillable-pdf",
"jsPDF",
"json-schema"
],
module: "fesm/survey.pdf.mjs",
main: "survey.pdf.js",
repository: {
Expand Down