-
Notifications
You must be signed in to change notification settings - Fork 340
/
package.json
80 lines (80 loc) · 2.03 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pinyin-pro",
"version": "3.25.0",
"description": "准确率和性能最优异的汉字转拼音库。获取中文拼音、韵母、声母、声调、首字母,支持拼音匹配",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./types/index.d.ts",
"scripts": {
"test": "vitest run --coverage",
"build": "rollup -c && rollup -c rollup.esm.config.js",
"commit": "git-cz",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zh-lx/pinyin-pro.git"
},
"files": [
"dist",
"types"
],
"keywords": [
"拼音",
"pinyin",
"汉字",
"中文",
"首字母",
"韵母",
"声母",
"音调"
],
"author": "zh-lx",
"license": "MIT",
"bugs": {
"url": "https://github.com/zh-lx/pinyin-pro/issues"
},
"homepage": "https://pinyin-pro.cn",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pinyin-pro/data": "1.0.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitest/coverage-v8": "^1.5.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.2",
"eslint": "^7.22.0",
"rollup": "2.60.0",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.2.3",
"vitest": "^1.5.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"sideEffects": false
}