@rex0220/kintone-sql-tools 1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +187 -0
  3. package/dist-cli/ksql.js +7402 -0
  4. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@rex0220/kintone-sql-tools",
3
+ "version": "1.0.0",
4
+ "description": "kintone SQL plugin and CLI tools (ksql)",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/rex0220/kintone-sql-tools.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/rex0220/kintone-sql-tools/issues"
15
+ },
16
+ "homepage": "https://github.com/rex0220/kintone-sql-tools#readme",
17
+ "bin": {
18
+ "ksql": "dist-cli/ksql.js"
19
+ },
20
+ "scripts": {
21
+ "test": "jest",
22
+ "build": "npm run build:plugin && npm run build:cli",
23
+ "build:plugin": "node build.mjs",
24
+ "build:cli": "node build-cli.mjs",
25
+ "prepack": "npm run build:cli",
26
+ "start": "run-p develop upload",
27
+ "develop": "node build.mjs --watch",
28
+ "upload": "rex0220-plugin-uploader -f dist/ksql-plugin-v1.0.0.zip --watch"
29
+ },
30
+ "files": [
31
+ "dist-cli/",
32
+ "README.md",
33
+ "LICENSE",
34
+ "package.json"
35
+ ],
36
+ "devDependencies": {
37
+ "@kintone/plugin-packer": "^9.1.0",
38
+ "@types/jest": "^29.5.12",
39
+ "esbuild": "^0.27.5",
40
+ "jest": "^29.7.0",
41
+ "npm-run-all": "^4.1.5",
42
+ "ts-jest": "^29.1.4",
43
+ "typescript": "^5.4.5"
44
+ },
45
+ "jest": {
46
+ "preset": "ts-jest",
47
+ "testEnvironment": "node",
48
+ "testMatch": [
49
+ "**/__tests__/**/*.test.ts"
50
+ ]
51
+ }
52
+ }