-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
90 lines (90 loc) · 2.74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "prettier-plugin-ember-template-tag",
"version": "2.0.4",
"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": "[email protected]:ember-tooling/prettier-plugin-ember-template-tag.git"
},
"license": "MIT",
"author": {
"name": "Krystan HuffMenne",
"email": "[email protected]"
},
"type": "module",
"main": "dist/prettier-plugin-ember-template-tag.js",
"scripts": {
"build": "tsc && vite build",
"prepack": "pnpm build",
"preexample": "vite build",
"example": "pnpm preexample && cd examples && pnpm example",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefix-colors auto",
"lint:eslint": "eslint . --cache",
"lint:eslint:fix": "eslint . --fix",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefix-colors auto",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:ts": "tsc --project tsconfig.lint.json",
"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/core": "^7.23.6",
"content-tag": "^2.0.1",
"prettier": "^3.1.1"
},
"devDependencies": {
"@babel/types": "^7.23.6",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/babel__core": "^7.20.5",
"@types/eslint": "^8.56.0",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/ui": "^1.1.0",
"concurrently": "^9.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-vitest": "^0.3.20",
"prettier-plugin-jsdoc": "^1.3.0",
"release-plan": "^0.11.0",
"typescript": "^5.3.3",
"vite": "^6.0.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"prettier": ">= 3.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20"
},
"volta": {
"node": "18.19.0",
"pnpm": "8.13.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}