@tahminator/sapling 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/LICENSE +21 -0
- package/README.md +384 -0
- package/dist/index.cjs +755 -0
- package/dist/index.d.cts +521 -0
- package/dist/index.d.mts +521 -0
- package/dist/index.mjs +701 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tahminator/sapling",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"author": "Tahmid Ahmed",
|
|
5
|
+
"description": "A library to help you write cleaner Express.js code",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "git+https://github.com/tahminator/sapling.git"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "pnpm run typecheck && pnpm run lint && pnpm run fmt && pnpm run vt && pnpm run build",
|
|
11
|
+
"vt": "vitest run",
|
|
12
|
+
"fmt": "pnpm run prettier",
|
|
13
|
+
"fmt:fix": "pnpm run prettier:fix",
|
|
14
|
+
"lint": "pnpm run eslint",
|
|
15
|
+
"lint:fix": "pnpm run eslint:fix",
|
|
16
|
+
"eslint": "eslint .",
|
|
17
|
+
"eslint:fix": "eslint . --fix",
|
|
18
|
+
"prettier": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --check .",
|
|
19
|
+
"prettier:fix": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --write .",
|
|
20
|
+
"typecheck": "tsc -b --noEmit",
|
|
21
|
+
"build": "rm -rf dist && tsdown"
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.mjs",
|
|
25
|
+
"types": "./dist/index.d.cts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/index.mjs",
|
|
29
|
+
"require": "./dist/index.cjs"
|
|
30
|
+
},
|
|
31
|
+
"./package.json": "./package.json"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"/dist"
|
|
35
|
+
],
|
|
36
|
+
"keywords": [],
|
|
37
|
+
"license": "ISC",
|
|
38
|
+
"packageManager": "pnpm@10.12.4",
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"express": "^5"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@eslint/js": "^10.0.1",
|
|
44
|
+
"@standard-schema/spec": "^1.1.0",
|
|
45
|
+
"@types/express": "^5",
|
|
46
|
+
"@types/supertest": "^7.2.0",
|
|
47
|
+
"@vitest/coverage-istanbul": "^4.1.2",
|
|
48
|
+
"eslint": "^10.1.0",
|
|
49
|
+
"eslint-plugin-perfectionist": "^5.7.0",
|
|
50
|
+
"globals": "^17.4.0",
|
|
51
|
+
"jiti": "^2.6.1",
|
|
52
|
+
"jsdom": "^29.0.1",
|
|
53
|
+
"prettier": "^3.8.1",
|
|
54
|
+
"superjson": "^2.2.6",
|
|
55
|
+
"supertest": "^7.2.2",
|
|
56
|
+
"tsdown": "^0.21.10",
|
|
57
|
+
"typescript-eslint": "^8.57.2",
|
|
58
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
59
|
+
"vitest": "^4.1.2"
|
|
60
|
+
},
|
|
61
|
+
"inlinedDependencies": {
|
|
62
|
+
"@standard-schema/spec": "1.1.0"
|
|
63
|
+
}
|
|
64
|
+
}
|