-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "esbuild-plugin-kintone-plugin",
"version": "1.1.0",
"description": "A esbuild plugin to create a plugin zip of Kintone.",
"keywords": [
"esbuild",
"kintone"
],
"homepage": "https://github.com/tmpie/esbuild-plugin-kintone-plugin#readme",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"license": "MIT",
"author": "tmpie",
"repository": {
"type": "git",
"url": "git+https://github.com/tmpie/esbuild-plugin-kintone-plugin.git"
},
"scripts": {
"build": "tsc",
"format": "npx prettier src/**/*.ts --write",
"test": "node src/__tests__/build.cjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@kintone/plugin-packer": "^8.1.3",
"prompts": "^2.4.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.44",
"@types/prompts": "^2.4.9",
"esbuild": "^0.23.0",
"esbuild-plugin-kintone-plugin": "file:",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
}
}