-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "styled-formatter",
"version": "1.1.5",
"description": "CLI for formatting styled-components template literals",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yudppp/styled-formatter.git"
},
"bin": {
"styled-formatter": "dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "@biomejs/biome format --write .",
"start": "node dist/src/cli.js"
},
"author": "yudppp",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.3",
"@biomejs/biome": "1.9.4",
"@swc/jest": "^0.2.37",
"commander": "^10.0.0",
"diff": "^7.0.0",
"glob": "^11.0.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"kleur": "^4.1.5",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/diff": "^6.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0"
}
}