-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.15 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.15 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
{
"name": "cybozu-sample-ai-plugin",
"version": "0.1.0",
"description": "sample ai plugin summarize text developed by cybozu",
"license": "UNLICENSED",
"scripts": {
"setup": "npm ci",
"start": "npm run develop",
"bundle:dev": "tsc --noEmit && NODE_ENV=development webpack --mode development",
"bundle:prod": "tsc --noEmit && NODE_ENV=production webpack --mode production",
"build": "webpack --mode production",
"upload": ". ./.env && kintone-plugin-uploader dist/plugin.zip --base-url $KINTONE_BASE_URL --username $KINTONE_USERNAME --password $KINTONE_PASSWORD",
"develop": "run-s bundle:dev upload",
"develop:watch": "npm-watch develop",
"production": "run-s bundle:prod upload",
"lint": "eslint --ext .tsx,.ts src/ "
},
"watch": {
"develop": {
"patterns": [
"src",
"./plugin/manifest.json"
],
"extensions": "html,tsx,ts,css,js,jsx,png,gif,svg,json"
}
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@cybozu/eslint-config": "^23.0.0",
"@kintone/create-plugin": "^8.2.3",
"@kintone/dts-gen": "^8.0.12",
"@kintone/plugin-uploader": "^9.1.2",
"@kintone/webpack-plugin-kintone-plugin": "^8.0.9",
"@types/node": "^20.6.5",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"prettier": "^3.0.3",
"style-loader": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@kintone/rest-api-client": "^5.5.1",
"@mui/material": "^5.15.20",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}