forked from AnySoftKeyboard/AnySoftKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"type": "module",
"scripts": {
"lint": "eslint --ext .ts js/",
"lint-fix": "eslint --ext .ts js/ --fix",
"pretty": "prettier --check \"js/**/*.ts\"",
"pretty-fix": "prettier --write \"js/**/*.ts\"",
"build": "tsc",
"test": "pnpm build && mocha \"dist/**/*.test.js\"",
"package_approval": "ncc build dist/auto_approval/index.js -o .github/actions/auto_approval/dist",
"package": "pnpm package_approval"
},
"repository": "git@github.com:AnySoftKeyboard/AnySoftKeyboard.git",
"author": {
"name": "menny"
},
"engines": {
"node": "18.16.0",
"yarn": "1.22.19"
},
"packageManager": "pnpm@8.6.9",
"license": "Apache-2.0",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "20.11.30",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vercel/ncc": "^0.38.1",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3"
},
"dependencies": {
"commander": "^12.0.0",
"follow-redirects": "^1.15.6",
"js-yaml": "^4.1.0",
"tar": "^6.2.1",
"text-file-diff": "^1.4.8"
}
}