pairit 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.
Files changed (3) hide show
  1. package/README.md +93 -0
  2. package/dist/index.js +10677 -0
  3. package/package.json +43 -0
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "pairit",
3
+ "version": "0.1.0",
4
+ "description": "CLI for the Pairit behavioral science experiment platform",
5
+ "type": "module",
6
+ "bin": {
7
+ "pairit": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build src/index.ts --outdir dist --target node",
14
+ "lint": "tsc --noEmit",
15
+ "prepublishOnly": "bun run build"
16
+ },
17
+ "keywords": [
18
+ "experiment",
19
+ "behavioral-science",
20
+ "research",
21
+ "cli"
22
+ ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/pairium/pairit.git",
26
+ "directory": "apps/manager/cli"
27
+ },
28
+ "homepage": "https://pairium.github.io/pairit/",
29
+ "license": "MIT",
30
+ "optionalDependencies": {
31
+ "keytar": "^7.9.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/bun": "^1.1.13",
35
+ "@types/open": "^6.2.1",
36
+ "better-auth": "^1.4.7",
37
+ "commander": "^12.1.0",
38
+ "dotenv": "^17.2.3",
39
+ "open": "^11.0.0",
40
+ "typescript": "^5.9.3",
41
+ "yaml": "^2.6.0"
42
+ }
43
+ }