-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "expose-kit",
"version": "1.0.0",
"type": "module",
"private": false,
"author": "EdamAmex <edame8080@gmail.com> (https://github.com/EdamAme-x)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EdamAme-x/expose-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://evex.land",
"scripts": {
"test": "bun test",
"format": "biome format .",
"format:fix": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"copy": "bun run utils/common/cp.ts package.json dist/package.json",
"build": "tsup",
"postbuild": "publint",
"prepublishOnly": "bun copy",
"release": "bun run build && np"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"publint": "^0.3.16",
"tsup": "^8.5.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@babel/generator": "^7.28.5",
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@babel/types": "^7.28.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/update-notifier": "^6.0.8",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"expose-kit": "^0.10.2",
"loading-cli": "^1.1.2",
"update-notifier": "^7.3.1"
},
"bin": {
"expose": "dist/index.js",
"expose-kit": "dist/index.js",
"expose-js": "dist/index.js",
"exposejs": "dist/index.js"
},
"files": [
"dist"
]
}