-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "@taiga-ui/prettier-plugin-backticks",
"version": "1.1.1",
"description": "",
"scripts": {
"test": "tsc --noEmit && node --import tsx --test test/*.spec.ts",
"lint": "eslint .",
"build": "tsc",
"prepare": "husky",
"release": "standard-version -a --no-verify"
},
"type": "module",
"author": "Svyatoslav Zaytsev <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@taiga-ui/eslint-plugin-experience": "0.222.5",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "22.9.0",
"eslint": "8.57.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"tsx": "4.19.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"prettier": "^3.3.3"
},
"keywords": [
"backticks",
"plugin",
"prettier",
"prettier-plugin"
],
"engines": {
"node": ">=16.0.0"
},
"module": "./dist/src/index.js",
"exports": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"README-ru.md",
"README.md",
"LICENSE",
"CHANGELOG.md",
"images"
],
"repository": "[email protected]:taiga-family/prettier-plugins.git",
"publishConfig": {
"access": "public"
}
}