shipgate 1.0.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/LICENSE +21 -0
- package/README.md +184 -0
- package/dist/cli.cjs +94153 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shipgate",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ShipGate — Stop AI from shipping fake features. Define what your code should do. We enforce it.",
|
|
5
|
+
"author": "ISL Team",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/guardiavault-oss/ISL-LANG.git",
|
|
10
|
+
"directory": "packages/cli"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://shipgate.dev",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/guardiavault-oss/ISL-LANG/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"shipgate",
|
|
18
|
+
"isl",
|
|
19
|
+
"intent-specification-language",
|
|
20
|
+
"cli",
|
|
21
|
+
"ai",
|
|
22
|
+
"verification",
|
|
23
|
+
"code-generation",
|
|
24
|
+
"ai-safety",
|
|
25
|
+
"ship-gate"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.js"
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"bin": {
|
|
41
|
+
"shipgate": "./dist/cli.cjs",
|
|
42
|
+
"isl": "./dist/cli.cjs"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist/",
|
|
46
|
+
"README.md",
|
|
47
|
+
"LICENSE"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"prebuild": "node scripts/resolve-workspace-deps.js",
|
|
51
|
+
"build": "node scripts/build-with-esbuild.js",
|
|
52
|
+
"build:tsup": "tsup",
|
|
53
|
+
"build:deps": "node scripts/build-deps.js",
|
|
54
|
+
"build:full": "pnpm run build:deps && pnpm run build",
|
|
55
|
+
"build:bundle": "bash scripts/build.sh",
|
|
56
|
+
"dev": "tsup --watch",
|
|
57
|
+
"test": "vitest run --passWithNoTests",
|
|
58
|
+
"test:watch": "vitest",
|
|
59
|
+
"test:coverage": "vitest run --coverage",
|
|
60
|
+
"test:smoke": "vitest run tests/smoke.test.ts",
|
|
61
|
+
"lint": "eslint src --ext .ts",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"clean": "rimraf dist",
|
|
64
|
+
"prepack": "pnpm run build",
|
|
65
|
+
"postinstall": "node scripts/postinstall.js || true",
|
|
66
|
+
"pack:check": "npm pack --dry-run",
|
|
67
|
+
"test:unit": "vitest run --passWithNoTests"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@isl-lang/build-runner": "workspace:*",
|
|
71
|
+
"@isl-lang/evaluator": "workspace:*",
|
|
72
|
+
"@isl-lang/gate": "workspace:*",
|
|
73
|
+
"@isl-lang/import-resolver": "workspace:*",
|
|
74
|
+
"@isl-lang/inference": "workspace:*",
|
|
75
|
+
"@isl-lang/intent-translator": "workspace:*",
|
|
76
|
+
"@isl-lang/isl-core": "workspace:*",
|
|
77
|
+
"@isl-lang/isl-smt": "workspace:*",
|
|
78
|
+
"@isl-lang/isl-verify": "workspace:*",
|
|
79
|
+
"@isl-lang/parser": "workspace:*",
|
|
80
|
+
"@isl-lang/pbt": "workspace:*",
|
|
81
|
+
"@isl-lang/pipeline": "workspace:*",
|
|
82
|
+
"@isl-lang/isl-policy-engine": "workspace:*",
|
|
83
|
+
"@isl-lang/policy-packs": "workspace:*",
|
|
84
|
+
"@isl-lang/proof": "workspace:*",
|
|
85
|
+
"@isl-lang/repl": "workspace:*",
|
|
86
|
+
"@isl-lang/semantic-analysis": "workspace:*",
|
|
87
|
+
"@isl-lang/spec-assist": "workspace:*",
|
|
88
|
+
"@isl-lang/typechecker": "workspace:*",
|
|
89
|
+
"@isl-lang/verifier-runtime": "workspace:*",
|
|
90
|
+
"@isl-lang/verifier-temporal": "workspace:*",
|
|
91
|
+
"@isl-lang/truthpack-v2": "workspace:*",
|
|
92
|
+
"@isl-lang/observability": "workspace:*",
|
|
93
|
+
"@types/node": "^25.1.0",
|
|
94
|
+
"@types/picomatch": "^4.0.2",
|
|
95
|
+
"chalk": "^5.3.0",
|
|
96
|
+
"chokidar": "^4.0.3",
|
|
97
|
+
"commander": "^12.0.0",
|
|
98
|
+
"glob": "^10.3.10",
|
|
99
|
+
"ora": "^8.0.1",
|
|
100
|
+
"picomatch": "^4.0.3",
|
|
101
|
+
"rimraf": "^5.0.5",
|
|
102
|
+
"tsup": "^8.0.1",
|
|
103
|
+
"typescript": "^5.3.3",
|
|
104
|
+
"vitest": "^1.2.0",
|
|
105
|
+
"yaml": "^2.3.4"
|
|
106
|
+
},
|
|
107
|
+
"sideEffects": false
|
|
108
|
+
}
|