-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 795 Bytes
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
{
"name": "v-transform",
"bin": {
"vt": "bin/index.js"
},
"type": "module",
"version": "3.2.3",
"main": "src/index.js",
"scripts": {
"clean": "npx rimraf test",
"vt": "vt",
"transform": "vt transform",
"build": "bun build src/index.js --target=bun --format=esm --minify --outfile=bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VickScarlet/v-transform.git"
},
"author": "Vick Scarlet <scarlet_vick@outlook.com>",
"license": "MIT",
"devDependencies": {
"commander": "^15.0.0",
"js-yaml": "^5.2.3",
"ts-to-zod": "^5.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zod": "^4.4.3"
},
"overrides": {
"@oclif/core": "^4"
},
"files": [
"bin",
"src"
]
}