-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.11 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
81
82
{
"name": "auto-command",
"version": "1.8.0-alpha.2",
"description": "Automatic command",
"homepage": "https://github.com/txp1035/auto-command",
"bugs": {
"url": "https://github.com/txp1035/auto-command/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/txp1035/auto-command"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tcmd": "./bin/tcmd.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "father build",
"genLangs": "esno ./src/translate/translate-api/languages/genTargetCode.ts",
"lint": "npm run lint:js && npm run tsc",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"prepare": "husky install",
"prettier": "prettier --write .",
"sort": "npx sort-package-json",
"test": "jest"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
],
"./package.json": [
"npx sort-package-json"
]
},
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/generator": "^7.18.7",
"@babel/traverse": "^7.18.6",
"@babel/types": "^7.18.9",
"@txpjs/qa": "1.0.0-alpha.1",
"@txpjs/translate": "1.0.0-alpha.2",
"@txpjs/utils-node": "1.0.0-alpha.6",
"cheerio": "1.0.0-rc.12",
"esbuild": "^0.14.49",
"pirates": "^4.0.5"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/prettier": "^2.6.3",
"eslint": "^8.21.0",
"esno": "^0.16.3",
"father": "^4.0.0-rc.4",
"husky": "^8.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"authors": [
"tangxiaoping <[email protected]> (https://github.com/txp1035)"
]
}