Gathering detailed insights and metrics for @kintone/webpack-plugin-kintone-plugin
Gathering detailed insights and metrics for @kintone/webpack-plugin-kintone-plugin
Gathering detailed insights and metrics for @kintone/webpack-plugin-kintone-plugin
Gathering detailed insights and metrics for @kintone/webpack-plugin-kintone-plugin
A monorepo for Kintone development tools 🔧
npm install @kintone/webpack-plugin-kintone-plugin
Typescript
Module System
Min. Node Version
Node Version
NPM Version
57.7
Supply Chain
58.8
Quality
77.8
Maintenance
100
Vulnerability
98.6
License
@kintone/rest-api-client: v5.7.4
Updated on Jun 02, 2025
@kintone/webpack-plugin-kintone-plugin: v8.0.11
Updated on May 14, 2025
@kintone/rest-api-client: v5.7.3
Updated on May 14, 2025
@kintone/rest: v0.2.1
Updated on May 14, 2025
@kintone/profile-loader: v5.0.2
Updated on May 14, 2025
@kintone/plugin-uploader: v9.1.5
Updated on May 14, 2025
TypeScript (91.16%)
CSS (5.84%)
JavaScript (2.59%)
HTML (0.41%)
Total Downloads
157,761
Last Day
23
Last Week
318
Last Month
1,310
Last Year
17,595
MIT License
124 Stars
7,391 Commits
60 Forks
9 Watchers
63 Branches
49 Contributors
Updated on Jul 02, 2025
Minified
Minified + Gzipped
Latest Version
8.0.11
Package Id
@kintone/webpack-plugin-kintone-plugin@8.0.11
Unpacked Size
43.80 kB
Size
9.80 kB
File Count
24
NPM Version
10.8.2
Node Version
18.20.8
Published on
May 14, 2025
Cumulative downloads
Total Downloads
Last Day
76.9%
23
Compared to previous day
Last Week
24.7%
318
Compared to previous week
Last Month
-24.1%
1,310
Compared to previous month
Last Year
-63.3%
17,595
Compared to previous year
2
1
7
A webpack plugin to create a plugin zip of Kintone.
1"use strict"; 2 3const path = require("path"); 4const KintonePlugin = require("@kintone/webpack-plugin-kintone-plugin"); 5 6module.exports = { 7 entry: { 8 desktop: "./src/desktop.js", 9 mobile: "./src/mobile.js", 10 }, 11 output: { 12 path: path.resolve(__dirname, "plugin", "js"), 13 filename: "[name].js", 14 }, 15 plugins: [ 16 new KintonePlugin({ 17 manifestJSONPath: "./plugin/manifest.json", 18 privateKeyPath: "./private.ppk", 19 pluginZipPath: "./dist/plugin.zip", 20 }), 21 ], 22};
The settings is the following structure.
src/desktop.js
is an entry point of desktop javascript.src/mobild.js
is an entry point of desktop javascript.plugin
is the directory of the plugin, which includes manifest.json
and other resources.private.ppk
is the private key for the plugindist/plugin.zip
is the plugin zip file.npm install @kintone/webpack-plugin-kintone-plugin
You can customize the paths of manifest.json, privateKey and plugin zip. Those default values are like the following.
manifestJSONPath: './manifest.json',
privateKeyPath: './private.ppk',
pluginZipPath: './dist/plugin.zip'
If you want to customize these values, you can update the values like this.
1"use strict"; 2 3const path = require("path"); 4const KintonePlugin = require("@kintone/webpack-plugin-kintone-plugin"); 5 6module.exports = { 7 entry: { 8 desktop: "./src/desktop.js", 9 mobile: "./src/mobile.js", 10 }, 11 output: { 12 path: path.resolve(__dirname, "plugin", "js"), 13 filename: "[name].js", 14 }, 15 plugins: [ 16 new KintonePlugin({ 17 manifestJSONPath: "./plugin/manifest.json", 18 privateKeyPath: "./private.ppk", 19 pluginZipPath: "./dist/plugin.zip", 20 }), 21 ], 22};
In addition to that, you can specify the plugin zip name based on the plugin id and values of the manifest.json.
1plugins: [ 2 new KintonePlugin({ 3 manifestJSONPath: "./plugin/manifest.json", 4 privateKeyPath: "./private.ppk", 5 pluginZipPath: (id, manifest) => `${id}.${manifest.version}.plugin.zip`, 6 }), 7];
MIT License
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
23 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More