veriskit 0.2.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/CHANGELOG.md +20 -0
- package/LICENSE +21 -0
- package/README.md +181 -0
- package/bin/veris +7 -0
- package/dist/index.js +1268 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "veriskit",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "The fastest way to prove your software works — a zero-config verification CLI.",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "vitest run",
|
|
7
|
+
"build": "tsup",
|
|
8
|
+
"lint": "biome check .",
|
|
9
|
+
"typecheck": "tsc --noEmit",
|
|
10
|
+
"verify": "npm run typecheck && npm run lint && npm run test",
|
|
11
|
+
"prepublishOnly": "npm run verify && npm run build"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/abhiyoheswaran1/veris.git"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/abhiyoheswaran1/veris/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/abhiyoheswaran1/veris#readme",
|
|
23
|
+
"bin": {
|
|
24
|
+
"veris": "bin/veris"
|
|
25
|
+
},
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"cac": "^7.0.0",
|
|
31
|
+
"picocolors": "^1.1.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@biomejs/biome": "^2.5.3",
|
|
35
|
+
"@types/node": "^26.1.1",
|
|
36
|
+
"tsup": "^8.5.1",
|
|
37
|
+
"typescript": "^7.0.2",
|
|
38
|
+
"vitest": "^4.1.10"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"bin",
|
|
43
|
+
"CHANGELOG.md"
|
|
44
|
+
]
|
|
45
|
+
}
|