-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.9 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "prettier-plugin-ember-template-tag",
"version": "2.1.6",
"description": "A prettier plugin for formatting Ember template tags",
"keywords": [
"ember",
"ember template imports",
"gjs",
"gts",
"prettier",
"template tag"
],
"homepage": "https://github.com/ember-tooling/prettier-plugin-ember-template-tag",
"bugs": {
"url": "https://github.com/ember-tooling/prettier-plugin-ember-template-tag/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:ember-tooling/prettier-plugin-ember-template-tag.git"
},
"license": "MIT",
"author": {
"name": "Krystan HuffMenne",
"email": "kmenne@gmail.com"
},
"exports": {
".": "./dist/prettier-plugin-ember-template-tag.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"preexample": "vite build",
"example": "pnpm preexample && cd examples && pnpm example",
"format": "prettier --cache --write .",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefix-colors auto && pnpm lint:format",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefix-colors auto && pnpm format",
"lint:format": "prettier --cache --check .",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --project tsconfig.lint.json",
"prepack": "pnpm build",
"test": "vitest",
"test:all": "concurrently \"pnpm:test:run\" \"pnpm:test:example\" --prefix-colors auto",
"test:example": "pnpm preexample && cd examples && pnpm test",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"dependencies": {
"@babel/traverse": "^7.28.5",
"content-tag": "^4.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@babel/types": "^7.28.5",
"@eslint/js": "^9.39.1",
"@tsconfig/node24": "^24.0.3",
"@tsconfig/strictest": "^2.0.8",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/eslint-plugin": "^1.5.1",
"@vitest/ui": "^4.0.14",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"prettier": "^3.7.3",
"prettier-plugin-jsdoc": "^1.7.0",
"release-plan": "^0.17.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^6.4.2",
"vitest": "^4.0.14"
},
"peerDependencies": {
"prettier": ">= 3.0.0"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": "18.* || >= 20"
},
"volta": {
"node": "20.19.6",
"pnpm": "10.24.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}