-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
43
{
"name": "bun-wifi-name",
"version": "0.3.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"description": "Get current wifi name in Bun.",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "bun run build-fast --dts-resolve",
"release": "bumpp --commit --push --tag && npm publish",
"prepublishOnly": "bun run build",
"test": "bun wiptest"
},
"files": [
"dist"
],
"keywords": [
"bun",
"wifi"
],
"license": "MIT",
"homepage": "https://github.com/wobsoriano/bun-wifi-name#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/bun-wifi-name.git"
},
"bugs": "https://github.com/wobsoriano/bun-wifi-name/issues",
"author": "Robert Soriano <[email protected]>",
"devDependencies": {
"bumpp": "^9.2.0",
"bun-types": "^1.0.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}