-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
{
"name": "@ices/ts-plugin-locale",
"version": "1.2.0",
"description": "TypeScript's language service plugin that adds IntelliSense for locale components",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "tsc -p . -w --inlineSourceMap --inlineSources",
"build": "rimraf dist types && tsc -p . --sourceMap --inlineSources"
},
"dependencies": {
"js-yaml": "^4.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@ices/react-locale": "^1.4.1",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.20",
"@types/react": ">=16.8.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@ices/react-locale": "^1.4.1",
"@types/react": ">=16.8.0"
},
"keywords": [
"typescript",
"plugin",
"language service",
"locales",
"locale components",
"yml",
"yaml"
],
"lint-staged": {
"**/*.{js,ts,json,md,yml}": [
"prettier --write",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/icesjs/ts-plugin-locale.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": {
"name": "Stone",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/icesjs/ts-plugin-locale/issues"
},
"homepage": "https://github.com/icesjs/ts-plugin-locale#readme",
"files": [
"dist",
"lib",
"types"
]
}