@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 +13 -0
- package/dist/index.cjs +4 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +37 -0
package/README.md
ADDED
package/dist/index.cjs
ADDED
package/dist/index.d.cts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
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
|
+
}
|