-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@marvinvista/pricebench",
"version": "0.2.0",
"description": "CLI that catches AI pricing margin leaks before they reach customers.",
"type": "commonjs",
"main": "./src/core.js",
"exports": {
".": "./src/core.js",
"./core": "./src/core.js",
"./fixtures": "./src/fixtures.js",
"./package.json": "./package.json"
},
"bin": {
"pricebench": "./bin/pricebench.js"
},
"files": [
"alpha",
"assets",
"bin",
"src",
"scripts",
"examples",
"docs",
"schema",
"ALPHA.md",
"README.md",
"ROADMAP.md",
"SECURITY.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"AGENTS.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"demo": "node bin/pricebench.js demo ai-support",
"alpha:smoke": "node scripts/alpha-smoke.js",
"alpha:trial": "node scripts/run-alpha-trial.js",
"alpha:outside": "node scripts/outside-alpha-check.js",
"github:smoke": "node scripts/smoke-github-install.js",
"public:surface": "node scripts/verify-public-surface.js",
"check": "node --test && node bin/pricebench.js status --json && node bin/pricebench.js doctor --json && node scripts/verify-public-surface.js && node scripts/run-alpha-trial.js --json && node scripts/smoke-github-install.js && node scripts/outside-alpha-check.js",
"release:rc": "node --test && node bin/pricebench.js status --json && node bin/pricebench.js doctor --json && node scripts/verify-public-surface.js && node scripts/run-alpha-trial.js --json && node scripts/smoke-github-install.js && node scripts/outside-alpha-check.js"
},
"keywords": [
"pricing",
"ai",
"monetization",
"cli",
"growth"
],
"author": "Marvin Vista",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/marvinvista/pricebench.git"
},
"bugs": {
"url": "https://github.com/marvinvista/pricebench/issues"
},
"homepage": "https://github.com/marvinvista/pricebench#readme",
"engines": {
"node": ">=20"
}
}