@neurcode/action 0.2.2 → 0.3.0-rc.6
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/README.md +202 -73
- package/action.yml +96 -232
- package/dist/index.js +40228 -24346
- package/dist/licenses.txt +722 -0
- package/package.json +20 -10
- package/dist/index.js.map +0 -1
- package/dist/runtime-compat.js +0 -125
- package/dist/runtime-compat.js.map +0 -1
- package/dist/sourcemap-register.js +0 -1
- package/dist/verify-mode.js +0 -74
- package/dist/verify-mode.js.map +0 -1
- package/src/index.ts +0 -2068
- package/src/runtime-compat.ts +0 -201
- package/src/verify-mode.ts +0 -116
- package/tests/reliability-contract.test.ts +0 -214
- package/tsconfig.json +0 -19
package/package.json
CHANGED
|
@@ -1,30 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurcode/action",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "GitHub Action
|
|
3
|
+
"version": "0.3.0-rc.6",
|
|
4
|
+
"description": "Neurcode Runtime Admission Advisory — GitHub Action. Deterministic PR effect inventory and optional self-attested runtime admission provenance. No account required.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"action.yml",
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
6
11
|
"scripts": {
|
|
7
|
-
"build": "
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"prepare": "npm run build"
|
|
12
|
+
"build": "node scripts/build.mjs",
|
|
13
|
+
"test": "pnpm --dir ../.. --filter @neurcode-ai/contracts build && pnpm --dir ../.. --filter @neurcode-ai/governance-runtime build && tsx --test test/**/*.test.ts",
|
|
14
|
+
"smoke": "tsx --test test/smoke/bundle-smoke.test.ts"
|
|
11
15
|
},
|
|
12
16
|
"keywords": [
|
|
13
17
|
"github-action",
|
|
14
|
-
"
|
|
18
|
+
"runtime-admission",
|
|
15
19
|
"neurcode",
|
|
16
|
-
"ci-cd"
|
|
20
|
+
"ci-cd",
|
|
21
|
+
"provenance",
|
|
22
|
+
"advisory"
|
|
17
23
|
],
|
|
18
24
|
"license": "MIT",
|
|
19
25
|
"dependencies": {
|
|
20
26
|
"@actions/core": "^1.10.1",
|
|
21
|
-
"@actions/exec": "^1.1.1",
|
|
22
27
|
"@actions/github": "^6.0.0",
|
|
23
|
-
"@neurcode-ai/contracts": "
|
|
28
|
+
"@neurcode-ai/contracts": "^0.2.0",
|
|
29
|
+
"@neurcode-ai/governance-runtime": "^0.3.0"
|
|
24
30
|
},
|
|
25
31
|
"devDependencies": {
|
|
26
32
|
"@types/node": "^20.10.0",
|
|
27
33
|
"@vercel/ncc": "^0.38.1",
|
|
34
|
+
"tsx": "^4.0.0",
|
|
28
35
|
"typescript": "^5.3.0"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
29
39
|
}
|
|
30
40
|
}
|