-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@openvanilla/mctabimweb",
"version": "0.5.2",
"description": "Taiwan Indigenous Language Input Method TypeScript Version",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/data/**/*.json",
"!src/chromeos_ime.ts",
"!src/pime.ts",
"!src/pime_keys.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"ts-build": "tsc",
"ts-build:watch": "tsc -w",
"build:chromeos": "webpack --mode production --config webpack.config.chromeext.js",
"build:pime": "webpack --mode production --config webpack.config.pime.js",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"prepublishOnly": "npm run ts-build && npm run test && npm run eslint",
"test": "jest",
"test:coverage": "jest --coverage",
"eslint": "eslint src --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openvanilla/McTabimWeb.git"
},
"author": "The McTabim Authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/openvanilla/McTabimWeb/issues"
},
"homepage": "https://github.com/openvanilla/McTabimWeb#readme",
"browser": {
"assert": false
},
"dependencies": {
"chinese_convert": "^1.0.8",
"dayjs": "^1.11.20"
},
"devDependencies": {
"@types/chrome": "^0.1.40",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^16.0.0",
"jsdom": "^29.0.2",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2",
"webpack": "^5.106.1",
"webpack-cli": "^7.0.2"
}
}