-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "@luca-iachini/prettier-plugin-fluent",
"version": "1.0.13",
"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.27.1",
"@types/chai": "^4.3.11",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"chai": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.10",
"jest": "^29.7.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": "^7.0.2"
},
"dependencies": {
"@fluent/syntax": "^0.19.0",
"node-fetch": "^2.7.0"
},
"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"
},
"files": [
"./dist"
]
}