-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "prettier-plugin-stylex-key-sort",
"author": "nedjulius",
"version": "1.0.1",
"description": "Prettier plugin to sort StyleX keys",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nedjulius/prettier-plugin-stylex-key-sort",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint \"**/*.{ts,js}\"",
"lint:fix": "npm run lint --fix",
"format": "prettier --write '**/*.{ts,json}' --config .prettierrc.json --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{ts,json}' --config .prettierrc.json --ignore-path .gitignore"
},
"files": [
"dist",
"src"
],
"keywords": [
"prettier",
"plugin",
"stylex",
"sort keys"
],
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@babel/types": "^7.24.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@stylexjs/shared": "^0.5.1",
"prettier": "^3.2.5"
}
}