skillspp 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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "skillspp",
3
+ "private": false,
4
+ "version": "0.2.0",
5
+ "description": "Skills++ CLI for skill source validation and management workflows.",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "bin": {
9
+ "skillspp": "./dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public",
16
+ "provenance": true
17
+ },
18
+ "scripts": {
19
+ "skillspp": "tsx src/cli.ts",
20
+ "build": "node ./scripts/build.mjs",
21
+ "clean": "rm -rf dist .pack",
22
+ "typecheck": "tsc --noEmit -p tsconfig.json",
23
+ "prepack": "corepack pnpm run build",
24
+ "pack:smoke": "rm -rf .pack && mkdir -p .pack && npm pack --pack-destination .pack >/dev/null && TMP_DIR=$(mktemp -d) && npm install --prefix \"$TMP_DIR\" --no-audit --no-fund ./.pack/skillspp-*.tgz >/dev/null && \"$TMP_DIR/node_modules/.bin/skillspp\" --help >/dev/null && \"$TMP_DIR/node_modules/.bin/skillspp\" --version && rm -rf \"$TMP_DIR\" .pack",
25
+ "test:unit": "vitest run --config vitest.config.ts -t '@unit'",
26
+ "test:integration": "vitest run --config vitest.config.ts -t '@integration'",
27
+ "test:contract": "vitest run --config vitest.config.ts -t '@contract'",
28
+ "test:e2e": "vitest run --config vitest.config.ts -t '@e2e'",
29
+ "test:ci": "vitest run --config vitest.config.ts --coverage",
30
+ "test": "corepack pnpm run test:ci",
31
+ "lint": "eslint src tests --max-warnings 0"
32
+ },
33
+ "dependencies": {
34
+ "commander": "^14.0.3",
35
+ "gray-matter": "^4.0.3",
36
+ "ink": "^6.8.0",
37
+ "picocolors": "^1.1.1",
38
+ "react": "^19.1.1",
39
+ "yaml": "^2.8.1",
40
+ "zod": "^3.25.76"
41
+ },
42
+ "devDependencies": {
43
+ "@skillspp/core": "workspace:*",
44
+ "@skillspp/platform-node": "workspace:*",
45
+ "@types/node": "^25.4.0",
46
+ "@types/react": "^19.1.13",
47
+ "@vitest/coverage-v8": "^3.2.4",
48
+ "esbuild": "^0.25.10",
49
+ "pnpm": "10.18.3",
50
+ "react-devtools-core": "^7.0.1",
51
+ "tsx": "^4.20.6",
52
+ "typescript": "^5.9.2",
53
+ "vite-tsconfig-paths": "^5.1.4",
54
+ "vitest": "^3.2.4"
55
+ }
56
+ }