-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@smallcase/bite",
"version": "3.0.3",
"main": "index.js",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"tsx-transform": "dist/cli/tsx-transform.js",
"rename-to-jsx": "dist/cli/rename-to-jsx.js",
"bite-tsx-transform": "dist/cli/tsx-transform.js",
"bite-rename-jsx": "dist/cli/rename-to-jsx.js"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.8",
"@babel/parser": "^7.26.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/traverse": "^7.26.9",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^22.13.4",
"chokidar": "^4.0.3",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/smallcase/sc-fe-bite.git"
},
"volta": {
"node": "24.14.1"
},
"dependencies": {
"chalk": "^5.4.1",
"citty": "^0.1.6",
"yocto-spinner": "^0.2.0"
}
}