@asmelabs/pushkin 0.0.0-alpha.2

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/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # pushkin
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run src/index.ts
13
+ ```
package/dist/index.cjs ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ // src/index.ts
4
+ console.log("pushkin!");
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // src/index.ts
2
+ console.log("pushkin!");
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@asmelabs/pushkin",
3
+ "version": "0.0.0-alpha.2",
4
+ "main": "dist/index.js",
5
+ "module": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "devDependencies": {
11
+ "@biomejs/biome": "^2.3.14",
12
+ "@changesets/changelog-github": "^0.5.2",
13
+ "@changesets/cli": "^2.29.8",
14
+ "@commitlint/cli": "^20.4.1",
15
+ "@commitlint/config-conventional": "^20.4.1",
16
+ "@types/bun": "latest",
17
+ "husky": "^9.1.7",
18
+ "lint-staged": "^16.2.7",
19
+ "tsup": "^8.5.1"
20
+ },
21
+ "peerDependencies": {
22
+ "typescript": "^5"
23
+ },
24
+ "scripts": {
25
+ "prepare": "husky",
26
+ "release": "bun run build && changeset publish",
27
+ "version-packages": "changeset version",
28
+ "build": "tsup",
29
+ "check": "biome check --write ."
30
+ },
31
+ "lint-staged": {
32
+ "*.{ts,tsx,js,jsx,json,css,md}": [
33
+ "biome check --write"
34
+ ]
35
+ },
36
+ "type": "module"
37
+ }