-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "kintone-plugin-cli",
"version": "0.0.9",
"description": "kintone plugin creation CLI Experience",
"license": "MIT",
"author": "Nishida Michiya",
"keywords": [
"kintone",
"plugin",
"cli",
"vue",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pikachii/kintone-plugin-cli.git"
},
"type": "module",
"types": "./bin/index.d.ts",
"main": "./bin/index.js",
"bin": {
"kintone-plugin-cli": "./bin/index.js",
"kpc": "./bin/index.js"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint --fix .",
"test": "npm run lint",
"lint-staged": "lint-staged",
"prepublish": "npm run test && npm run build",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,js}": "npm run test"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": "^16.10.0 || >=18.0.0"
},
"volta": {
"node": "20.12.2"
},
"dependencies": {
"@kintone/plugin-packer": "^8.0.5",
"@kintone/plugin-uploader": "9.1.2",
"@kintone/webpack-plugin-kintone-plugin": "^8.0.7",
"@vue/compiler-sfc": "^3.4.23",
"archiver": "^7.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"giget": "^1.2.3",
"pathe": "^1.1.2",
"sass-loader": "^14.1.0",
"ts-loader": "^9.5.1",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.91.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.8",
"@types/archiver": "^6.0.2",
"@types/node": "^20.12.7",
"@types/webpack": "^5.28.5",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5"
}
}