@grosspoetrysystems/oompf 0.1.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 +171 -0
- package/dist/index.d.mts +179 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +8463 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grosspoetrysystems/oompf",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Publish, inspect, search, and install OMP (Oh My Pi) profiles from the OOMPF index.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"omp",
|
|
7
|
+
"oh-my-pi",
|
|
8
|
+
"oompf",
|
|
9
|
+
"profile",
|
|
10
|
+
"cli"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://oompf.run",
|
|
13
|
+
"bugs": "https://github.com/grosspoetrysystems/oompf/issues",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/grosspoetrysystems/oompf.git",
|
|
17
|
+
"directory": "apps/cli"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"default": "./dist/index.mjs"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"oompf": "./dist/index.mjs"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist/index.mjs",
|
|
32
|
+
"dist/index.mjs.map",
|
|
33
|
+
"dist/index.d.mts",
|
|
34
|
+
"dist/index.d.mts.map"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsdown && tsc -b --force",
|
|
38
|
+
"test": "bun test src",
|
|
39
|
+
"typecheck": "tsc -b"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"incur": "0.4.26"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@oompf/core": "workspace:*",
|
|
46
|
+
"@oompf/database": "workspace:*",
|
|
47
|
+
"@oompf/github": "workspace:*"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=22"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"//devDependencies": "Workspace packages are inlined into the bundle by tsdown (noExternal), so they are build-time inputs, not runtime dependencies a consumer must resolve.",
|
|
56
|
+
"//engines": "Promise.withResolvers, used by the bundled gh runner, requires Node 22.",
|
|
57
|
+
"//files": "tsc -b also emits per-file .d.ts (including tests) into dist for the composite build, so ship an explicit list rather than the whole directory."
|
|
58
|
+
}
|