-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "transmart",
"version": "0.0.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"description": "Automate your i18n localization with AI",
"files": [
"lib"
],
"workspaces": [
"packages/*"
],
"keywords": [
"i18n",
"translation",
"ChatGPT",
"AI"
],
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch",
"lint": "eslint --quiet packages --ext .ts",
"lint:fix": "eslint --quiet --fix packages --ext .ts",
"bootstrap": "source .env",
"release": "npm run clean && npm run build && lerna publish"
},
"dependencies": {
"commander": "^9.4.1",
"fs-extra": "^11.1.0",
"node-fetch": "^2.6.9",
"spinnies": "^0.5.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.15.0",
"@types/node-fetch": "^2.6.2",
"@types/prettier": "^2.7.1",
"@types/spinnies": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"lerna": "^6.5.1",
"lint-staged": "^11.0.0",
"prettier": "2.3.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"**/!README.md": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run typecheck && lint-staged --debug",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}