qlogicae_aklot 1.3.4 → 1.4.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,3 @@
1
+ #!/usr/bin/env bun
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../sources/cli.ts"],"names":[],"mappings":""}
package/library/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bun
2
+ import { greet } from "./utilities";
3
+ greet("Bin");
4
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../sources/cli.ts"],
4
+ "sourcesContent": ["#!/usr/bin/env bun\r\n\r\nimport { greet } from './utilities';\r\n\r\ngreet('Bin');\r\n"],
5
+ "mappings": ";AAEA,SAAS,aAAa;AAEtB,MAAM,KAAK;",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,54 +1,57 @@
1
- {
2
- "name": "qlogicae_aklot",
3
- "version": "1.3.4",
4
- "author": "Vaughn Cedric L. Araneta",
5
- "main": "./library/index.js",
6
- "module": "index.ts",
7
- "devDependencies": {
8
- "@eslint/js": "^10.0.1",
9
- "@types/bun": "latest",
10
- "@vitest/coverage-v8": "4.1.8",
11
- "esbuild": "^0.28.1",
12
- "eslint": "^10.4.1",
13
- "prettier": "^3.8.4",
14
- "rimraf": "^6.1.3",
15
- "tsup": "^8.5.1",
16
- "typescript": "^6.0.3",
17
- "typescript-eslint": "^8.61.0",
18
- "vitest": "^4.1.8"
19
- },
20
- "description": "QLogicae Aklot",
21
- "files": [
22
- "library",
23
- "documents"
24
- ],
25
- "license": "MIT",
26
- "private": false,
27
- "scripts": {
28
- "clean": "bunx rimraf library",
29
- "format": "bunx prettier --config './configurations/.prettierrc' --write .",
30
- "format:check": "bunx prettier --config './configurations/.prettierrc' --check .",
31
- "lint": "bunx eslint --config './configurations/eslint.config.js' .",
32
- "transpile": "bunx tsc --project './configurations/tsconfig.json'",
33
- "bundle": "bun './configurations/esbuild.js'",
34
- "build": "bun run clean && bun run format && bun run lint && bun run transpile && bun run bundle",
35
- "test": "bun run test:bench && bun run test:unit",
36
- "test:unit": "bunx vitest run --watch=false --config './configurations/vitest.unit.config.ts' --reporter=verbose --coverage",
37
- "test:bench": "bunx vitest bench --watch=false --config './configurations/vitest.bench.config.ts' --coverage",
38
- "deploy:check": "npm pack --dry-run",
39
- "workflow:develop": "bun run build",
40
- "workflow:test": "bun run build && bun run test",
41
- "workflow:test:unit": "bun run build && bun run test:unit",
42
- "workflow:test:bench": "bun run build && bun run test:bench",
43
- "workflow:deploy:pre": "bun run build && bun run test && git add . && git commit -m 'deployment preparation'",
44
- "workflow:deploy:major": "bun run workflow:deploy:pre && npm version major && bun run workflow:deploy:post",
45
- "workflow:deploy:minor": "bun run workflow:deploy:pre && npm version minor && bun run workflow:deploy:post",
46
- "workflow:deploy:patch": "bun run workflow:deploy:pre && npm version patch && bun run workflow:deploy:post",
47
- "workflow:deploy:post": "git push && bun publish"
48
- },
49
- "type": "module",
50
- "types": "./library/index.d.ts",
51
- "dependencies": {
52
- "pino": "^10.3.1"
53
- }
54
- }
1
+ {
2
+ "name": "qlogicae_aklot",
3
+ "version": "1.4.1",
4
+ "author": "Vaughn Cedric L. Araneta",
5
+ "main": "./library/index.js",
6
+ "module": "index.ts",
7
+ "devDependencies": {
8
+ "@eslint/js": "^10.0.1",
9
+ "@types/bun": "latest",
10
+ "@vitest/coverage-v8": "4.1.8",
11
+ "esbuild": "^0.28.1",
12
+ "eslint": "^10.4.1",
13
+ "prettier": "^3.8.4",
14
+ "rimraf": "^6.1.3",
15
+ "tsup": "^8.5.1",
16
+ "typescript": "^6.0.3",
17
+ "typescript-eslint": "^8.61.0",
18
+ "vitest": "^4.1.8"
19
+ },
20
+ "description": "QLogicae Aklot",
21
+ "bin": {
22
+ "qlogicae_aklot": "./sources/cli.ts"
23
+ },
24
+ "files": [
25
+ "library",
26
+ "documents"
27
+ ],
28
+ "license": "MIT",
29
+ "private": false,
30
+ "scripts": {
31
+ "clean": "bunx rimraf library",
32
+ "format": "bunx prettier --config './configurations/.prettierrc' --write .",
33
+ "format:check": "bunx prettier --config './configurations/.prettierrc' --check .",
34
+ "lint": "bunx eslint --config './configurations/eslint.config.js' .",
35
+ "transpile": "bunx tsc --project './configurations/tsconfig.json'",
36
+ "bundle": "bun './configurations/esbuild.js'",
37
+ "build": "bun run clean && bun run format && bun run lint && bun run transpile && bun run bundle",
38
+ "test": "bun run test:bench && bun run test:unit",
39
+ "test:unit": "bunx vitest run --watch=false --config './configurations/vitest.unit.config.ts' --reporter=verbose --coverage",
40
+ "test:bench": "bunx vitest bench --watch=false --config './configurations/vitest.bench.config.ts' --coverage",
41
+ "deploy:check": "npm pack --dry-run",
42
+ "workflow:develop": "bun run build",
43
+ "workflow:test": "bun run build && bun run test",
44
+ "workflow:test:unit": "bun run build && bun run test:unit",
45
+ "workflow:test:bench": "bun run build && bun run test:bench",
46
+ "workflow:deploy:pre": "bun run build && bun run test && git add . && git commit -m 'deployment preparation'",
47
+ "workflow:deploy:major": "bun run workflow:deploy:pre && npm version major && bun run workflow:deploy:post",
48
+ "workflow:deploy:minor": "bun run workflow:deploy:pre && npm version minor && bun run workflow:deploy:post",
49
+ "workflow:deploy:patch": "bun run workflow:deploy:pre && npm version patch && bun run workflow:deploy:post",
50
+ "workflow:deploy:post": "git push && bun publish"
51
+ },
52
+ "type": "module",
53
+ "types": "./library/index.d.ts",
54
+ "dependencies": {
55
+ "pino": "^10.3.1"
56
+ }
57
+ }
package/sources/cli.ts ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bun
2
+
3
+ import { greet } from './utilities';
4
+
5
+ greet('Bin');