-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 840 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 840 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
36
37
38
39
40
41
42
43
44
{
"name": "@_kla_/stax",
"author": {
"name": "Kien La",
"email": "la.kien+npm@gmail.com"
},
"repository": "https://github.com/kla/stax",
"version": "0.8.4",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"module": "./dist/index.js",
"files": [
"bin/stax",
"dist/index.js",
"dist/index.cjs",
"src",
"tsconfig.json"
],
"type": "module",
"private": false,
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"chalk": "5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"tmp": "^0.2.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/bun": "^1.0.3"
},
"scripts": {
"test": "bun test",
"build": "bin/build"
},
"bin": {
"stax": "./bin/stax"
}
}