-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "ts-i18n-plugin",
"version": "1.0.0",
"description": "TypeScript Language Service Plugin to provide autocompletion for i18n strings.",
"keywords": [
"i18n",
"type-safe",
"language-service-plugin",
"npm-package",
"typescript",
"localisation"
],
"homepage": "https://github.com/daniellwdb/ts-i18n-plugin#readme",
"bugs": {
"url": "https://github.com/daniellwdb/ts-i18n-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniellwdb/ts-i18n-plugin.git"
},
"license": "MIT",
"author": "pandaniell",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"build:watch": "rimraf ./dist && tsc -w",
"postinstall": "husky install",
"prepublish": "npm run build"
},
"lint-staged": {
"**/*.{ts,tsx,js,json,md}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"singleQuote": false
},
"dependencies": {
"glob": "^7.1.6",
"vscode-json-languageservice": "^4.0.0",
"vscode-uri": "^2.1.2"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"husky": "^5.0.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
}
}