-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.64 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
{
"name": "@luca-iachini/prettier-plugin-fluent",
"version": "1.0.14",
"description": "Fluent Prettier Plugin",
"author": "Luca Iachini",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luca-iachini/prettier-plugin-fluent.git"
},
"homepage": "https://github.com/luca-iachini/prettier-plugin-fluent#readme",
"bugs": {
"url": "https://github.com/luca-iachini/prettier-plugin-fluent/issues"
},
"keywords": [
"prettier",
"plugin",
"fluent"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/chai": "^5.2.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"chai": "^6.2.2",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"glob": "^13.0.6",
"jest": "^30.3.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@fluent/syntax": "^0.19.0",
"globals": "^17.4.0",
"node-fetch": "^3.3.2"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"release": "changeset publish",
"version": "changeset version"
},
"peerDependencies": {
"prettier": "^3.1.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"./dist"
]
}