@kintone/dts-gen 8.1.3 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,24 +1,40 @@
1
1
  {
2
2
  "name": "@kintone/dts-gen",
3
- "version": "8.1.3",
3
+ "version": "9.0.0",
4
4
  "description": "Types for kintone js api and Types generating tools",
5
- "main": "dist/index.js",
6
- "engines": {
7
- "node": ">=18"
5
+ "keywords": [
6
+ "kintone"
7
+ ],
8
+ "homepage": "https://github.com/kintone/js-sdk/tree/main/packages/dts-gen#readme",
9
+ "bugs": {
10
+ "url": "https://github.com/kintone/js-sdk/issues"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/kintone/js-sdk.git",
15
+ "directory": "packages/dts-gen"
8
16
  },
17
+ "license": "MIT",
9
18
  "author": {
10
19
  "name": "Cybozu, Inc.",
11
20
  "url": "https://cybozu.co.jp"
12
21
  },
13
- "license": "MIT",
22
+ "main": "dist/index.js",
23
+ "bin": {
24
+ "kintone-dts-gen": "dist/index.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "kintone.d.ts"
29
+ ],
14
30
  "dependencies": {
15
- "@cybozu/eslint-config": "^24.0.0",
31
+ "@cybozu/eslint-config": "^24.3.0",
16
32
  "axios": "^1.12.2",
17
33
  "commander": "^12.1.0",
18
- "eslint": "^9.20.1",
34
+ "eslint": "^9.36.0",
19
35
  "form-data": "^4.0.4",
20
36
  "lodash": "^4.17.21",
21
- "prettier": "^3.4.2"
37
+ "prettier": "^3.6.2"
22
38
  },
23
39
  "devDependencies": {
24
40
  "@types/eslint": "^9.6.1",
@@ -26,42 +42,26 @@
26
42
  "assert": "^2.1.0",
27
43
  "cross-env": "^7.0.3",
28
44
  "ts-loader": "^9.5.4",
29
- "webpack": "^5.98.0",
45
+ "webpack": "^5.101.3",
30
46
  "webpack-cli": "^5.1.4"
31
47
  },
32
- "bin": {
33
- "kintone-dts-gen": "dist/index.js"
34
- },
35
- "files": [
36
- "dist",
37
- "kintone.d.ts"
38
- ],
39
- "bugs": {
40
- "url": "https://github.com/kintone/js-sdk/issues"
41
- },
42
- "homepage": "https://github.com/kintone/js-sdk/tree/main/packages/dts-gen#readme",
43
- "repository": {
44
- "type": "git",
45
- "url": "git+https://github.com/kintone/js-sdk.git",
46
- "directory": "packages/dts-gen"
48
+ "engines": {
49
+ "node": ">=20"
47
50
  },
48
- "keywords": [
49
- "kintone"
50
- ],
51
51
  "scripts": {
52
52
  "prebuild": "pnpm clean",
53
53
  "build": "tsc --build --force",
54
54
  "postbuild": "node bin/npm-build.js && pnpm build:integration",
55
+ "build:integration": "webpack --mode development --config webpack.config.js",
55
56
  "clean": "rimraf dist",
57
+ "fix": "run-p fix:*",
56
58
  "fix:eslint": "pnpm lint:eslint --fix",
57
59
  "fix:prettier": "prettier --parser typescript --write \"src/**/*.{ts,tsx}\" ./kintone.d.ts",
58
- "fix": "run-p fix:*",
60
+ "help": "node dist/index.js --help",
61
+ "lint": "run-p lint:*",
59
62
  "lint:eslint": "eslint 'src/**/*.ts' --max-warnings 0",
60
63
  "lint:prettier": "prettier --parser typescript --check \"src/**/*.{ts,tsx}\" ./kintone.d.ts",
61
- "lint": "run-p lint:*",
62
- "help": "node dist/index.js --help",
63
64
  "test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
64
- "test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand",
65
- "build:integration": "webpack --mode development --config webpack.config.js"
65
+ "test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand"
66
66
  }
67
67
  }