buner 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,33 @@
1
+ name: Buner Deploy
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - release
7
+ paths:
8
+ - package.json
9
+
10
+ workflow_dispatch:
11
+
12
+ concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
+
16
+ jobs:
17
+ build:
18
+ timeout-minutes: 5
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v4
23
+
24
+ - name: Set up Node.js
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: '22.x'
28
+ registry-url: 'https://registry.npmjs.org'
29
+
30
+ - name: Publish to NPM
31
+ run: npm publish --access public
32
+ env:
33
+ NODE_AUTH_TOKEN: ${{ secrets.ORG_NPM_TOKEN }}
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ exports.printMsg = function () {
2
+ console.log('This is a message from the buner package')
3
+ }
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "buner",
3
+ "version": "0.0.1",
4
+ "main": "index.js",
5
+ "dependencies": {
6
+ "bun-types": "^1.2.19",
7
+ "csstype": "^3.1.3",
8
+ "typescript": "^5.9.2",
9
+ "undici-types": "^7.10.0"
10
+ },
11
+ "devDependencies": {},
12
+ "scripts": {
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/precise-alloy/buner.git"
18
+ },
19
+ "author": "",
20
+ "license": "ISC",
21
+ "bugs": {
22
+ "url": "https://github.com/precise-alloy/buner/issues"
23
+ },
24
+ "homepage": "https://github.com/precise-alloy/buner#readme",
25
+ "description": ""
26
+ }