-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "@codeexpander/plugin-convertors",
"version": "0.1.11",
"private": false,
"type": "module",
"main": "dist/index.html",
"files": [
"dist",
"plugin.json",
"README.md"
],
"publishConfig": {
"access": "public"
},
"description": "Format Converters - Date-time, base, color, YAML/JSON/TOML/XML/Markdown, list, temperature. | 格式转换工具 - 日期、进制、颜色、格式互转、列表、温度。",
"keywords": [
"codeexpander",
"plugin",
"convert",
"yaml",
"json",
"xml",
"toml",
"markdown",
"转换器"
],
"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": {
"date-fns": "^3.6.0",
"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"
}
}