Skip to content

Commit 34cdf75

Browse files
chore: wip
1 parent d1da0b0 commit 34cdf75

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

.stacks/core/api/package.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "@stacksjs/api",
3+
"type": "module",
4+
"version": "0.57.4",
5+
"description": "The Stacks array utilities.",
6+
"author": "Chris Breuer",
7+
"license": "MIT",
8+
"funding": "https://github.com/sponsors/chrisbbreuer",
9+
"homepage": "https://github.com/stacksjs/stacks/tree/main/.stacks/core/arrays#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/stacksjs/stacks.git",
13+
"directory": "./.stacks/core/arrays"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/stacksjs/stacks/issues"
17+
},
18+
"keywords": [
19+
"arrays",
20+
"collections",
21+
"contains",
22+
"utilities",
23+
"functions",
24+
"stacks"
25+
],
26+
"exports": {
27+
".": {
28+
"bun": "./src/index.ts",
29+
"import": "./dist/index.js"
30+
},
31+
"./*": {
32+
"bun": "./src/*",
33+
"import": "./dist/*"
34+
}
35+
},
36+
"module": "dist/index.js",
37+
"types": "dist/index.d.ts",
38+
"contributors": [
39+
"Chris Breuer <chris@ow3.org>"
40+
],
41+
"files": [
42+
"dist",
43+
"README.md"
44+
],
45+
"scripts": {
46+
"build": "bun --bun build.ts",
47+
"typecheck": "bun --bun tsc --noEmit",
48+
"prepublishOnly": "bun --bun run build"
49+
},
50+
"peerDependencies": {
51+
"@stacksjs/utils": "workspace:*"
52+
},
53+
"dependencies": {
54+
"@stacksjs/utils": "workspace:*"
55+
},
56+
"devDependencies": {
57+
"@stacksjs/development": "workspace:*"
58+
}
59+
}

.stacks/core/api/src/index.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)