pixdown 0.0.0

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.
package/dist/cli.d.mts ADDED
@@ -0,0 +1 @@
1
+ export { };
package/dist/cli.mjs ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ import "./index.mjs";
3
+ //#region src/cli.ts
4
+ console.log(`pixdown starter: 3`);
5
+ //#endregion
6
+ export {};
@@ -0,0 +1,5 @@
1
+ //#region src/index.d.ts
2
+ declare const one = 1;
3
+ declare const two = 2;
4
+ //#endregion
5
+ export { one, two };
package/dist/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/index.ts
2
+ const one = 1;
3
+ const two = 2;
4
+ //#endregion
5
+ export { one, two };
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "pixdown",
3
+ "version": "0.0.0",
4
+ "license": "MIT",
5
+ "bin": {
6
+ "pixdown": "./dist/cli.mjs"
7
+ },
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "type": "module",
12
+ "sideEffects": false,
13
+ "types": "./dist/index.d.mts",
14
+ "exports": {
15
+ ".": "./dist/index.mjs",
16
+ "./cli": "./dist/cli.mjs",
17
+ "./package.json": "./package.json"
18
+ },
19
+ "devDependencies": {
20
+ "@types/node": "^25.6.0",
21
+ "@typescript/native-preview": "7.0.0-dev.20260506.1",
22
+ "bumpp": "^11.0.1",
23
+ "lint-staged": "^17.0.0",
24
+ "oxfmt": "^0.48.0",
25
+ "oxlint": "^1.63.0",
26
+ "oxlint-tsgolint": "^0.22.1",
27
+ "publint": "^0.3.18",
28
+ "simple-git-hooks": "^2.13.1",
29
+ "tsdown": "^0.21.10",
30
+ "tsx": "^4.21.0",
31
+ "typescript": "^6.0.3",
32
+ "vitest": "^4.1.5"
33
+ },
34
+ "simple-git-hooks": {
35
+ "pre-commit": "pnpm exec lint-staged"
36
+ },
37
+ "lint-staged": {
38
+ "*.{js,jsx,mjs,cjs,ts,tsx}": [
39
+ "oxlint --fix"
40
+ ],
41
+ "*.{js,jsx,mjs,cjs,ts,tsx,json,jsonc,css,yaml,yml,md}": [
42
+ "oxfmt --no-error-on-unmatched-pattern"
43
+ ]
44
+ },
45
+ "scripts": {
46
+ "build": "tsdown",
47
+ "dev": "tsdown --watch",
48
+ "fmt": "oxfmt",
49
+ "fmt:check": "oxfmt --check",
50
+ "lint": "oxlint",
51
+ "lint:fix": "oxlint --fix",
52
+ "release": "bumpp --all --git-check",
53
+ "start": "tsx src/cli.ts",
54
+ "test": "vitest",
55
+ "typecheck": "tsgo"
56
+ }
57
+ }