UNPKG

@kintone/dts-gen

Version:

Types for kintone js api and Types generating tools

67 lines 1.98 kB
{ "name": "@kintone/dts-gen", "version": "9.0.3", "description": "Types for kintone js api and Types generating tools", "keywords": [ "kintone" ], "homepage": "https://github.com/kintone/js-sdk/tree/main/packages/dts-gen#readme", "bugs": { "url": "https://github.com/kintone/js-sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/kintone/js-sdk.git", "directory": "packages/dts-gen" }, "license": "MIT", "author": { "name": "Cybozu, Inc.", "url": "https://cybozu.co.jp" }, "main": "dist/index.js", "bin": { "kintone-dts-gen": "dist/index.js" }, "files": [ "dist", "kintone.d.ts" ], "dependencies": { "@cybozu/eslint-config": "^24.3.0", "axios": "1.14.0", "commander": "^12.1.0", "eslint": "^9.39.4", "form-data": "^4.0.5", "lodash": "^4.17.23", "prettier": "^3.8.1" }, "devDependencies": { "@types/eslint": "^9.6.1", "@types/lodash": "^4.17.24", "assert": "^2.1.0", "cross-env": "^10.1.0", "ts-loader": "^9.5.4", "webpack": "^5.105.4", "webpack-cli": "^6.0.1" }, "engines": { "node": ">=20" }, "scripts": { "prebuild": "pnpm clean", "build": "tsc --build --force", "postbuild": "tsx scripts/npm-build.ts && pnpm build:integration", "build:integration": "webpack --mode development --config webpack.config.js", "clean": "rimraf dist", "fix": "run-p fix:*", "fix:eslint": "pnpm lint:eslint --fix", "fix:prettier": "prettier --parser typescript --write \"src/**/*.{ts,tsx}\" ./kintone.d.ts", "help": "node dist/index.js --help", "lint": "run-p lint:*", "lint:eslint": "eslint 'src/**/*.ts' --max-warnings 0", "lint:prettier": "prettier --parser typescript --check \"src/**/*.{ts,tsx}\" ./kintone.d.ts", "test": "cross-env NODE_OPTIONS=--experimental-vm-modules vitest run", "test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules vitest run" } }