-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 KB
/
package.json
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
{
"name": "experimental-new-plugin-sample",
"version": "0.1.0",
"type": "module",
"private": true,
"license": "Apache-2.0",
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"scripts": {
"dev": "run-p dev:*",
"build": "run-s license:extract build:vite",
"build:init": "INITIAL_PACK=true run-s license:extract build:vite",
"build:vite": "vite build",
"dev:build": "vite build --watch",
"pack": "cli-kintone plugin pack --private-key [YOUR_PLUGIN_KEY_PATH].ppk --output ./dist/plugin.zip --input dist/plugin",
"pack:init": "cli-kintone plugin pack --output ./dist/plugin.zip --input dist/plugin",
"format": "biome format --write ./",
"lint": "biome lint --write ./",
"check": "biome check --write ./",
"license:extract": "license-manager extract -c license-manager.config.cjs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@cybozu/license-manager": "^1.2.1",
"@kintone/cli": "^1.12.3",
"@kintone/plugin-uploader": "^9.1.3",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-static-copy": "^1.0.6"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/commands": "^6.6.2",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/view": "^6.34.1",
"@uiw/codemirror-theme-vscode": "^4.23.3",
"@uiw/react-codemirror": "^4.23.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"engines": {
"node": ">=18.14.0",
"npm": ">=9.3.1"
}
}