-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 KB
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
{
"name": "@kintone/plugin-uploader",
"version": "10.0.0",
"description": "A kintone plugin uploader using puppeteer",
"keywords": [
"kintone"
],
"homepage": "https://github.com/kintone/js-sdk/tree/main/packages/plugin-uploader#readme",
"bugs": {
"url": "https://github.com/kintone/js-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/js-sdk.git",
"directory": "packages/plugin-uploader"
},
"license": "MIT",
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"main": "dist/index.js",
"bin": {
"kintone-plugin-uploader": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"prebuild": "pnpm clean",
"build": "tsc --build --force",
"clean": "rimraf dist",
"fix": "pnpm lint --fix",
"lint": "eslint 'src/**/*.ts' 'bin/*.js' --max-warnings 0",
"start": "pnpm build --watch",
"test": "echo 'no test'",
"test:ci": "pnpm test"
},
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"chalk": "^4.1.2",
"meow": "^9.0.0",
"os-locale": "^5.0.0",
"puppeteer": "^23.11.1"
},
"devDependencies": {
"@types/inquirer": "9.0.9"
},
"engines": {
"node": ">=20"
}
}