-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
68
69
70
71
72
73
74
75
76
{
"name": "vite-plugin-i18n-validator",
"version": "0.3.26",
"description": "A Vite plugin validates Json files with internationalization support in worker thread.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"tsup": "tsup-node",
"build": "turbo run tsup && cp ./.base_textlintrc ./dist/.base_textlintrc",
"watch": "turbo run tsup -- --watch",
"local:publish": "turbo run tsup && npm link",
"prepare": "husky install",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --fix --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf ./dist"
},
"author": "j1ngzoue",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeguild/vite-plugin-i18n-validator/issues"
},
"homepage": "https://github.com/activeguild/vite-plugin-i18n-validator#readme",
"dependencies": {
"picocolors": "^1.0.0",
"textlint-plugin-json": "^0.0.1"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/prettier": "^3.0.0",
"@types/traverse": "^0.6.36",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"textlint": "^14.0.3",
"tsup": "^8.0.2",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vite": "^5.1.5"
},
"keywords": [
"vite",
"vite-plugin",
"json",
"validator",
"valid",
"i18n",
"Internationalization",
"textlint"
],
"lint-staged": {
"*.{ts, tsx}": "eslint --fix",
"*": "prettier --write"
},
"peerDevDependencies": {
"textlint": "*",
"vite": "<=4"
},
"peerDependenciesMeta": {
"textlint": {
"optional": true
}
}
}