-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@kintone/webpack-plugin-kintone-plugin",
"version": "8.0.10",
"description": "A webpack plugin to generate a plugin zip",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "pnpm build --watch",
"prebuild": "pnpm clean",
"build": "tsc --build --force",
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.ts' --max-warnings 0",
"fix": "pnpm lint --fix",
"test": "jest --runInBand",
"test:ci": "jest --runInBand"
},
"keywords": [
"webpack",
"kintone"
],
"files": [
"dist"
],
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/js-sdk.git",
"directory": "packages/webpack-plugin-kintone-plugin"
},
"bugs": {
"url": "https://github.com/kintone/js-sdk/issues"
},
"homepage": "https://github.com/kintone/js-sdk/tree/main/packages/webpack-plugin-kintone-plugin#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"chokidar": "^3.6.0",
"rimraf": "^5.0.10",
"webpack": "^5.97.1",
"webpack-cli": "5.1.4",
"webpack-merge": "^6.0.1"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"@kintone/plugin-packer": "^8.1.3",
"mkdirp": "^3.0.1"
}
}