-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.19 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.19 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@kintone/cli",
"version": "1.19.1",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"description": "cli-kintone; The CLI tool for importing and exporting Kintone records.",
"bin": {
"cli-kintone": "cli.js"
},
"scripts": {
"start": "run-s clean:lib 'build:tsc --watch'",
"build": "run-s clean:lib build:tsc",
"build:all": "run-s build build:artifacts",
"build:artifacts": "run-s clean:artifacts build:executables license:analyze license:extract compress",
"build:executables": "run-s build:ncc package",
"build:tsc": "tsc --build ./tsconfig.build.json",
"build:ncc": "ncc build ./src/cli/main.ts -m",
"package": "mkdirp ./bin && pkg --sea ./dist/index.js -o ./bin/cli-kintone -t linux-x64,macos-arm64,win-x64",
"license:analyze": "license-manager analyze -c license-manager.config.js",
"license:extract": "license-manager extract -c license-manager.config.js -w .",
"compress": "zx ./scripts/compress-to-zip-file.ts",
"typecheck": "tsc --project tsconfig.typecheck.json --pretty --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "pnpm clean:test && vitest run --config vitest.config.ci.ts",
"test:e2e": "cucumber-js",
"test:e2e:dev": "pnpm test:e2e --fail-fast",
"test:e2e:ci": "pnpm clean:test && cucumber-js --format ./cucumber-reporter.js:./allure-results/dummy.txt",
"lint": "run-p -l lint:*",
"lint:eslint": "eslint ./ --max-warnings 0 --cache --cache-location ./node_modules/.cache/eslint/",
"lint:prettier": "prettier --check '**/*.{json,md,yml,yaml}' --cache",
"fix": "run-p fix:*",
"fix:lint": "run-s 'lint:eslint --fix'",
"fix:prettier": "run-s 'lint:prettier --write'",
"clean": "run-s clean:lib clean:artifacts clean:test",
"clean:lib": "rimraf lib",
"clean:artifacts": "rimraf bin artifacts dist",
"clean:test": "rimraf allure-results allure-report",
"doc:start": "pnpm --filter ./website start",
"doc:start:ja": "pnpm --filter ./website start:ja",
"doc:build": "pnpm --filter ./website build",
"doc:serve": "pnpm --filter ./website serve",
"doc:update-credits": "pnpm --filter ./website update-credits",
"update-contributors": "ts-node ./scripts/update-contributors.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/cli-kintone.git"
},
"files": [
"CHANGELOG.md",
"cli.js",
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"kintone"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kintone/cli-kintone/issues"
},
"homepage": "https://github.com/kintone/cli-kintone/#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@cucumber/cucumber": "^11.3.0",
"@cybozu/eslint-config": "^25.0.1",
"@cybozu/license-manager": "^1.4.1",
"@octokit/rest": "^22.0.1",
"@types/node": "^18.19.130",
"@types/node-rsa": "^1.1.4",
"@types/rollup-plugin-auto-external": "^2.0.5",
"@types/yargs": "^17.0.35",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^3.3.0",
"@vercel/ncc": "^0.38.4",
"@yao-pkg/pkg": "^6.14.1",
"ajv": "^8.18.0",
"allure-commandline": "^2.38.1",
"allure-cucumberjs": "^2.15.1",
"allure-js-commons": "^3.6.0",
"allure-vitest": "^3.6.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"mkdirp": "^3.0.1",
"npm": "^11.12.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"zx": "^8.8.5"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"@kintone/plugin-manifest-validator": "^11.1.0",
"@kintone/rest-api-client": "^6.1.3",
"chalk": "4.1.2",
"chokidar": "^4.0.3",
"csv-parse": "^5.6.0",
"csv-stringify": "6.5.2",
"https-proxy-agent": "^7.0.6",
"iconv-lite": "^0.7.2",
"node-rsa": "^1.1.1",
"tar": "^7.5.13",
"yargs": "^17.7.2",
"yauzl": "^3.2.1",
"yazl": "^3.3.1"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"undici": ">=7.18.2",
"ws": ">=8.18.3"
}
}
}