-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.87 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.87 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "1.0.0",
"description": "chrome extension boilerplate",
"license": "MIT",
"private": true,
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"type": "module",
"scripts": {
"clean:bundle": "rimraf dist && turbo clean:bundle",
"clean:node_modules": "pnpx rimraf node_modules && pnpx turbo clean:node_modules",
"clean:turbo": "rimraf .turbo && turbo clean:turbo",
"clean": "pnpm clean:bundle && pnpm clean:turbo && pnpm clean:node_modules",
"clean:install": "pnpm clean:node_modules && pnpm install --frozen-lockfile",
"type-check": "turbo type-check",
"base-build": "pnpm clean:bundle && turbo build",
"build": "pnpm set-global-env && pnpm base-build",
"build:firefox": "pnpm set-global-env CLI_CEB_FIREFOX=true && pnpm base-build",
"base-dev": "pnpm clean:bundle && turbo ready && turbo watch dev --concurrency 20",
"dev": "pnpm set-global-env CLI_CEB_DEV=true && pnpm base-dev",
"dev:firefox": "pnpm set-global-env CLI_CEB_DEV=true CLI_CEB_FIREFOX=true && pnpm base-dev",
"build:eslint": "tsc -b",
"zip": "pnpm build && pnpm -F zipper zip",
"zip:firefox": "pnpm build:firefox && pnpm -F zipper zip",
"e2e": "pnpm zip && turbo e2e",
"e2e:firefox": "pnpm zip:firefox && turbo e2e",
"lint": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint:fix --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"prettier": "turbo prettier --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"prepare": "husky",
"update-version": "bash bash-scripts/update_version.sh",
"copy_env": "bash bash-scripts/copy_env.sh",
"set-global-env": "bash bash-scripts/set_global_env.sh",
"postinstall": "pnpm build:eslint && pnpm copy_env",
"module-manager": "pnpm -F module-manager start"
},
"dependencies": {
"@blocknote/core": "^0.30.0",
"@blocknote/mantine": "^0.30.0",
"@blocknote/react": "^0.30.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@langchain/core": "^0.3.51",
"@langchain/mcp-adapters": "^0.4.2",
"@langchain/ollama": "^0.2.0",
"@langchain/openai": "^0.5.10",
"@radix-ui/react-avatar": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-separator": "^1.1.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.9",
"@types/lodash": "^4.17.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"file-saver": "^2.0.5",
"force-graph": "^1.49.5",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"langchain": "^0.3.24",
"lodash": "^4.17.21",
"lucide-react": "^0.503.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-force-graph": "^1.47.6",
"react-force-graph-2d": "^1.27.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@types/chrome": "0.0.304",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.5",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"fast-glob": "^3.3.3",
"globals": "^15.14.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"postcss": "^8.5.2",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"run-script-os": "^1.1.6",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"turbo": "^2.4.2",
"typescript": "5.8.1-rc",
"typescript-eslint": "^8.20.0",
"vite": "6.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write --cache --cache-location node_modules/.cache/.prettiercache"
]
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=22.12.0"
}
}