|
2 | 2 | "name": "@kintone/create-plugin", |
3 | 3 | "version": "8.2.5", |
4 | 4 | "description": "A CLI tool for creating a kintone plugin!", |
5 | | - "bin": { |
6 | | - "create-plugin": "bin/cli.js", |
7 | | - "create-kintone-plugin": "bin/cli.js" |
8 | | - }, |
9 | | - "main": "dist/src/index.js", |
10 | | - "engines": { |
11 | | - "node": ">=18" |
12 | | - }, |
| 5 | + "keywords": [ |
| 6 | + "kintone" |
| 7 | + ], |
| 8 | + "homepage": "https://github.com/kintone/js-sdk/tree/main/packages/create-plugin", |
| 9 | + "bugs": "https://github.com/kintone/js-sdk/issues", |
13 | 10 | "repository": { |
14 | 11 | "type": "git", |
15 | 12 | "url": "git+https://github.com/kintone/js-sdk.git", |
16 | 13 | "directory": "packages/create-plugin" |
17 | 14 | }, |
18 | | - "homepage": "https://github.com/kintone/js-sdk/tree/main/packages/create-plugin", |
19 | | - "bugs": "https://github.com/kintone/js-sdk/issues", |
| 15 | + "license": "MIT", |
| 16 | + "author": { |
| 17 | + "name": "Cybozu, Inc.", |
| 18 | + "url": "https://cybozu.co.jp" |
| 19 | + }, |
| 20 | + "main": "dist/src/index.js", |
| 21 | + "bin": { |
| 22 | + "create-plugin": "bin/cli.js", |
| 23 | + "create-kintone-plugin": "bin/cli.js" |
| 24 | + }, |
| 25 | + "files": [ |
| 26 | + "bin", |
| 27 | + "dist/src", |
| 28 | + "templates" |
| 29 | + ], |
| 30 | + "scripts": { |
| 31 | + "build": "pnpm clean && tsc --build --force", |
| 32 | + "clean": "rimraf dist", |
| 33 | + "fix": "pnpm lint --fix", |
| 34 | + "lint": "eslint src --max-warnings 0", |
| 35 | + "start": "pnpm build --watch", |
| 36 | + "test": "jest --testPathIgnorePatterns=/__tests__/generator\\.test\\.ts$", |
| 37 | + "test:all": "run-p test test:generator test:e2e", |
| 38 | + "test:ci": "pnpm test test:generator", |
| 39 | + "test:e2e": "cross-env NODE_ENV=e2e jest --config=jest.e2e.config.js", |
| 40 | + "test:generator": "cross-env NODE_ENV=e2e jest --testPathPattern=/__tests__/generator\\.test\\.ts$" |
| 41 | + }, |
20 | 42 | "dependencies": { |
21 | 43 | "@inquirer/prompts": "^5.5.0", |
22 | 44 | "chalk": "^4.1.2", |
|
39 | 61 | "cross-env": "^7.0.3", |
40 | 62 | "jest-environment-node": "^29.7.0" |
41 | 63 | }, |
42 | | - "files": [ |
43 | | - "bin", |
44 | | - "dist/src", |
45 | | - "templates" |
46 | | - ], |
47 | | - "scripts": { |
48 | | - "start": "pnpm build --watch", |
49 | | - "build": "pnpm clean && tsc --build --force", |
50 | | - "clean": "rimraf dist", |
51 | | - "lint": "eslint src --max-warnings 0", |
52 | | - "fix": "pnpm lint --fix", |
53 | | - "test": "jest --testPathIgnorePatterns=/__tests__/generator\\.test\\.ts$", |
54 | | - "test:generator": "cross-env NODE_ENV=e2e jest --testPathPattern=/__tests__/generator\\.test\\.ts$", |
55 | | - "test:ci": "pnpm test test:generator", |
56 | | - "test:e2e": "cross-env NODE_ENV=e2e jest --config=jest.e2e.config.js", |
57 | | - "test:all": "run-p test test:generator test:e2e" |
58 | | - }, |
59 | | - "keywords": [ |
60 | | - "kintone" |
61 | | - ], |
62 | | - "author": { |
63 | | - "name": "Cybozu, Inc.", |
64 | | - "url": "https://cybozu.co.jp" |
65 | | - }, |
66 | | - "license": "MIT" |
| 64 | + "engines": { |
| 65 | + "node": ">=20" |
| 66 | + } |
67 | 67 | } |
0 commit comments