@cookielab.io/oopst 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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@cookielab.io/oopst",
3
+ "version": "0.1.0",
4
+ "description": "CLI for syncing local AI coding token usage into OopsT.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "exports": {
8
+ ".": "./dist/index.js"
9
+ },
10
+ "bin": {
11
+ "oopst": "./dist/index.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "engines": {
17
+ "node": ">=24.11.0"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "devDependencies": {
23
+ "@oopst/api": "0.0.0",
24
+ "@oopst/db": "0.0.0",
25
+ "@oopst/parsers": "0.0.0",
26
+ "@oopst/server": "0.0.0",
27
+ "@trpc/client": "11.17.0",
28
+ "@biomejs/biome": "2.4.15",
29
+ "@cookielab.io/biome-config": "2.0.0",
30
+ "@cookielab.io/typescript-config": "0.1.2",
31
+ "@types/node": "24.12.4",
32
+ "commander": "14.0.3",
33
+ "drizzle-orm": "1.0.0-rc.3",
34
+ "tsup": "8.5.1",
35
+ "tsx": "4.22.3",
36
+ "typescript": "6.0.3",
37
+ "vitest": "4.1.7"
38
+ },
39
+ "scripts": {
40
+ "dev": "tsx watch src/index.ts",
41
+ "build": "tsup && node -e \"const fs = require('node:fs'); fs.chmodSync('dist/index.js', 0o755)\"",
42
+ "typecheck": "tsc -p tsconfig.json --noEmit",
43
+ "test": "vitest run",
44
+ "test:unit": "vitest run --tags-filter=unit",
45
+ "test:integration": "vitest run --tags-filter=integration"
46
+ }
47
+ }