-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "chinese-simple2traditional",
"type": "module",
"version": "2.2.2",
"packageManager": "[email protected]",
"description": "中文繁简体互换,支持node端、浏览器端。",
"author": "pengzhanbo <[email protected]> (https://github.com/pengzhanbo)",
"license": "MIT",
"homepage": "https://github.com/pengzhanbo/chinese-simple2traditional",
"repository": {
"type": "git",
"url": "git+https://github.com/pengzhanbo/chinese-simple2traditional.git"
},
"bugs": {
"url": "https://github.com/pengzhanbo/chinese-simple2traditional/issues"
},
"keywords": [
"中文",
"简体",
"繁体",
"繁简体",
"繁简体转换",
"chinese",
"chinese simple",
"chinese traditional"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./enhance": {
"import": {
"types": "./dist/enhance.d.ts",
"default": "./dist/enhance.js"
}
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"playground:dev": "vite dev playground --config ./playground/vite.config.ts",
"playground:build": "vite build playground --config ./playground/vite.config.ts",
"generate": "tsx ./scripts/generate.ts",
"build": "pnpm generate && tsup",
"test": "vitest run --reporter verbose",
"lint": "eslint .",
"prepublishOnly": "pnpm run build",
"release": "bumpp package.json --commit --push --tag && npm publish --access public"
},
"devDependencies": {
"@pengzhanbo/eslint-config": "^1.19.0",
"@types/node": "^20.17.7",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"terser": "^5.36.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}