-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
99 lines (99 loc) · 2.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@kintone/plugin-packer",
"description": "Package your kintone plugin with pure JavaScript",
"version": "8.1.3",
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"bin": {
"kintone-plugin-packer": "bin/cli.js"
},
"types": "dist/index.d.ts",
"files": [
"bin",
"dist",
"from-manifest.js"
],
"scripts": {
"prebuild": "pnpm clean",
"build": "tsc --build --force",
"postbuild": "run-p js css",
"clean": "rimraf dist",
"lint": "eslint \"*.{js,ts}\" bin src site test --max-warnings 0",
"fix": "pnpm lint --fix",
"test": "run-p jest site:test",
"test:ci": "pnpm test",
"build:dev": "tsc --build --force --watch",
"css": "postcss --config postcss.config.js ./node_modules/normalize.css/normalize.css > docs/dist/normalize.min.css",
"js": "webpack --mode production",
"js:dev": "webpack serve --mode development",
"jest": "jest",
"site": "run-p js css",
"site:dev": "run-p css js:dev",
"site:test": "jest --config site/jest.config.js",
"start": "npm-run-all -l -s clean build -p build:dev site:dev"
},
"dependencies": {
"@kintone/plugin-manifest-validator": "^10.2.2",
"chokidar": "^3.6.0",
"debug": "^4.4.0",
"denodeify": "^1.2.1",
"meow": "^9.0.0",
"mkdirp": "^3.0.1",
"node-rsa": "~1.1.1",
"stream-buffers": "^3.0.3",
"yauzl": "^3.2.0",
"yazl": "^2.5.1"
},
"devDependencies": {
"@reduxjs/toolkit": "^2.5.1",
"@types/debug": "^4.1.12",
"@types/node-rsa": "^1.1.4",
"@types/stream-buffers": "^3.0.7",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.5",
"ajv": "^8.17.1",
"array-flatten": "^3.0.0",
"assert": "^2.1.0",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.1",
"cssnano": "^7.0.6",
"execa": "^5.1.1",
"glob": "^10.4.5",
"globals": "^15.14.0",
"jest-environment-jsdom": "^29.7.0",
"normalize.css": "^8.0.1",
"path-browserify": "^1.0.1",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"process": "^0.11.10",
"redux-logger": "^3.0.6",
"redux-thunk": "^3.1.0",
"rimraf": "^5.0.10",
"setimmediate": "^1.0.5",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"webpack": "^5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.2.0"
},
"homepage": "https://github.com/kintone/js-sdk/tree/main/packages/plugin-packer",
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/js-sdk.git",
"directory": "packages/plugin-packer"
},
"bugs": "https://github.com/kintone/js-sdk/issues",
"keywords": [
"kintone"
],
"license": "MIT"
}