@bodhiapp/app-bindings 0.0.41 → 0.0.42
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 +7 -42
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bodhiapp/app-bindings",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "NAPI-RS bindings for BodhiApp server
|
|
3
|
+
"version": "0.0.42",
|
|
4
|
+
"description": "NAPI-RS bindings for BodhiApp server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"napi": {
|
|
@@ -23,46 +23,11 @@
|
|
|
23
23
|
"build:release": "napi build --platform --release",
|
|
24
24
|
"build:release:win": "napi build --platform --release --target x86_64-pc-windows-msvc",
|
|
25
25
|
"update-optional-dependencies": "node scripts/update-optional-dependencies.js",
|
|
26
|
-
"verify-packages": "node scripts/verify-npm-packages.js"
|
|
27
|
-
"test:run": "vitest run",
|
|
28
|
-
"test:playwright": "cross-env HEADLESS=true playwright test --config=playwright.config.mjs --reporter=list",
|
|
29
|
-
"test:playwright:standalone": "cross-env HEADLESS=true playwright test --config=playwright.config.mjs --reporter=list --project standalone",
|
|
30
|
-
"test:playwright:multi_tenant": "cross-env HEADLESS=true playwright test --config=playwright.config.mjs --reporter=list --project multi_tenant",
|
|
31
|
-
"test:playwright:all": "cross-env HEADLESS=true playwright test --config=playwright.config.mjs --reporter=list",
|
|
32
|
-
"test:playwright:ci": "playwright test --config=playwright.config.mjs",
|
|
33
|
-
"test:playwright:ui": "playwright test --config=playwright.config.mjs --ui",
|
|
34
|
-
"test:playwright:headed": "playwright test --config=playwright.config.mjs --headed",
|
|
35
|
-
"test:playwright:scheduled": "playwright test --config=playwright.config.mjs --reporter=list --grep @scheduled",
|
|
36
|
-
"test:all": "npm run test:run && npm run test:playwright",
|
|
37
|
-
"format": "biome format --write .",
|
|
38
|
-
"format:check": "biome format .",
|
|
39
|
-
"lint": "biome lint .",
|
|
40
|
-
"lint:fix": "biome lint --write .",
|
|
41
|
-
"check": "biome check .",
|
|
42
|
-
"check:fix": "biome check --write .",
|
|
43
|
-
"e2e:server:standalone": "node tests-js/scripts/start-shared-server.mjs --port 51135 --db-type sqlite",
|
|
44
|
-
"e2e:server:multi_tenant": "node tests-js/scripts/start-shared-server.mjs --port 41135 --db-type postgres --deployment multi_tenant",
|
|
45
|
-
"e2e:server:test-app-oauth": "cd test-oauth-app && npm run build && npx serve dist -s -l 55173",
|
|
46
|
-
"e2e:server:test-app-mcp": "cd test-mcp-oauth-server && npm run build && npm start",
|
|
47
|
-
"e2e:server:test-app-mcp-dcr": "cd test-mcp-oauth-server && npm run build && node dist/index.js --dcr",
|
|
48
|
-
"e2e:server:test-mcp-auth-header": "cd test-mcp-auth-server && npm run build && node dist/index.js --header Authorization=\"Bearer test-header-key\" --port 55176",
|
|
49
|
-
"e2e:server:test-mcp-auth-query": "cd test-mcp-auth-server && npm run build && node dist/index.js --query api_key=test-query-key --port 55177",
|
|
50
|
-
"e2e:server:test-mcp-auth-mixed": "cd test-mcp-auth-server && npm run build && node dist/index.js --header X-Auth-1=header-val-1 --header X-Auth-2=header-val-2 --query q_key_1=query-val-1 --query q_key_2=query-val-2 --port 55178",
|
|
51
|
-
"e2e:server:everything-mcp": "PORT=55180 npx @modelcontextprotocol/server-everything streamableHttp",
|
|
52
|
-
"e2e:server:mcp-inspector": "DANGEROUSLY_OMIT_AUTH=true MCP_AUTO_OPEN_ENABLED=false npx @modelcontextprotocol/inspector"
|
|
26
|
+
"verify-packages": "node scripts/verify-npm-packages.js"
|
|
53
27
|
},
|
|
54
28
|
"devDependencies": {
|
|
55
|
-
"@biomejs/biome": "^1.9.4",
|
|
56
|
-
"@copilotkit/aimock": "^1.11.0",
|
|
57
|
-
"@modelcontextprotocol/inspector": "0.21.1",
|
|
58
|
-
"@modelcontextprotocol/server-everything": "2026.1.26",
|
|
59
29
|
"@napi-rs/cli": "^2.18.4",
|
|
60
|
-
"
|
|
61
|
-
"cross-env": "^10.1.0",
|
|
62
|
-
"dotenv": "^16.5.0",
|
|
63
|
-
"express": "^5.1.0",
|
|
64
|
-
"rimraf": "^6.0.1",
|
|
65
|
-
"vitest": "^2.1.8"
|
|
30
|
+
"rimraf": "^6.0.1"
|
|
66
31
|
},
|
|
67
32
|
"engines": {
|
|
68
33
|
"node": ">=22"
|
|
@@ -93,8 +58,8 @@
|
|
|
93
58
|
"index.js"
|
|
94
59
|
],
|
|
95
60
|
"optionalDependencies": {
|
|
96
|
-
"@bodhiapp/app-bindings-darwin-arm64": "0.0.
|
|
97
|
-
"@bodhiapp/app-bindings-linux-x64-gnu": "0.0.
|
|
98
|
-
"@bodhiapp/app-bindings-win32-x64-msvc": "0.0.
|
|
61
|
+
"@bodhiapp/app-bindings-darwin-arm64": "0.0.42",
|
|
62
|
+
"@bodhiapp/app-bindings-linux-x64-gnu": "0.0.42",
|
|
63
|
+
"@bodhiapp/app-bindings-win32-x64-msvc": "0.0.42"
|
|
99
64
|
}
|
|
100
65
|
}
|