forked from AnySoftKeyboard/AnySoftKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"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/contributors/index.js -o .github/actions/contributors/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.11",
"@types/mocha": "^10.0.6",
"@types/node": "20.10.5",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vercel/ncc": "^0.38.1",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^11.1.0"
}
}