-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "rime-snomiao",
"version": "3.1.0",
"description": "rime-snomiao is a rime schema that provides a set of ime plugins for typing in Chinese, Japanese, and English. It is designed to be used with the rime input method engine.",
"keywords": [],
"homepage": "https://github.com/snomiao/rime-snomiao#readme",
"bugs": {
"url": "https://github.com/snomiao/rime-snomiao/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snomiao/rime-snomiao.git"
},
"license": "ISC",
"author": "",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"rime-snomiao": "dist/cli.mjs"
},
"files": [
"dist",
"tools",
"install.bat",
"weasel*.exe",
"./Rime/*.yaml",
"./Rime/opencc/*.txt"
],
"scripts": {
"build": "snobuild",
"build:rime": "cmd /c \"cd C:\\Program Files (x86)\\Rime\\weasel-* && WeaselDeployer.exe /deploy\"",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"start": "node dist/cli.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:rime": "nodemon --ignore Rime/build -e yaml -x npm run build:rime"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"devDependencies": {
"@types/node": "^18.11.18",
"aswitcher": "^1.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"pkg-dir": "^7.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.0",
"prettier-plugin-tsconfig": "^0.0.1",
"semantic-release": "^20.1.0",
"snobuild": "^3.2.11",
"snorun": "^1.1.17",
"work-package-dir": "^1.0.0"
}
}