-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "@codeexpander/plugin-ai",
"version": "0.1.11",
"private": false,
"type": "module",
"main": "dist/index.html",
"files": [
"dist",
"plugin.json",
"README.md"
],
"publishConfig": {
"access": "public"
},
"description": "LLM Tokenizer - Count tokens for LLM prompts and responses. | 大模型分词器 - 统计大模型提示词与回复的 token 数量。",
"keywords": [
"codeexpander",
"plugin",
"ai",
"tokenizer",
"llm",
"token",
"分词",
"AI"
],
"scripts": {
"dev": "vite",
"build": "vite build && cp plugin.json dist/ && node -e \"const fs=require('fs');const p=require('./dist/plugin.json');p.main='index.html';fs.writeFileSync('dist/plugin.json',JSON.stringify(p,null,2));\"",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@codeexpander/dev-tools-i18n": "workspace:*",
"@codeexpander/dev-tools-ui": "workspace:*",
"@codeexpander/plugin-types": "workspace:*",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.3",
"vite": "^6.4.2"
}
}