@outcomeeng/spx 0.1.0 → 0.1.4
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 +38 -25
- package/dist/cli.js +4 -1
- package/dist/cli.js.map +1 -1
- package/package.json +44 -26
- package/dist/.eslintcache +0 -1
- package/dist/.validation-timings.json +0 -50
package/package.json
CHANGED
|
@@ -1,20 +1,58 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outcomeeng/spx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Developer CLI for code validation and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"spx": "./bin/spx.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist",
|
|
10
|
+
"dist/**/*.js",
|
|
11
|
+
"dist/**/*.js.map",
|
|
12
|
+
"dist/**/*.d.ts",
|
|
11
13
|
"bin"
|
|
12
14
|
],
|
|
13
15
|
"engines": {
|
|
14
16
|
"node": ">=18"
|
|
15
17
|
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/outcomeeng/spx.git"
|
|
21
|
+
},
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
16
30
|
"publishConfig": {
|
|
17
|
-
"access": "public"
|
|
31
|
+
"access": "public",
|
|
32
|
+
"provenance": true
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup",
|
|
36
|
+
"dev": "tsup --watch",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"test:watch": "vitest",
|
|
39
|
+
"test:unit": "vitest run tests/unit",
|
|
40
|
+
"test:integration": "vitest run tests/integration",
|
|
41
|
+
"test:e2e": "vitest run tests/e2e",
|
|
42
|
+
"test:coverage": "vitest run --coverage",
|
|
43
|
+
"typecheck": "node bin/spx.js validation typescript",
|
|
44
|
+
"typecheck:production": "node bin/spx.js validation typescript --scope production",
|
|
45
|
+
"lint": "node bin/spx.js validation lint",
|
|
46
|
+
"lint:fix": "node bin/spx.js validation lint --fix",
|
|
47
|
+
"lint:production": "node bin/spx.js validation lint --scope production",
|
|
48
|
+
"validate": "node bin/spx.js validation all",
|
|
49
|
+
"validate:production": "node bin/spx.js validation all --scope production",
|
|
50
|
+
"knip": "node bin/spx.js validation knip",
|
|
51
|
+
"circular": "node bin/spx.js validation circular",
|
|
52
|
+
"format": "prettier --write .",
|
|
53
|
+
"format:check": "prettier --check .",
|
|
54
|
+
"prepare": "lefthook install",
|
|
55
|
+
"prepublishOnly": "pnpm run validate && pnpm test && pnpm run build"
|
|
18
56
|
},
|
|
19
57
|
"keywords": [
|
|
20
58
|
"cli",
|
|
@@ -33,7 +71,6 @@
|
|
|
33
71
|
"eslint": "^9.39.2",
|
|
34
72
|
"eslint-config-prettier": "^10.1.8",
|
|
35
73
|
"eslint-plugin-import": "^2.32.0",
|
|
36
|
-
"execa": "^9.6.1",
|
|
37
74
|
"fast-check": "^4.5.3",
|
|
38
75
|
"globals": "^17.0.0",
|
|
39
76
|
"husky": "^9.1.7",
|
|
@@ -50,28 +87,9 @@
|
|
|
50
87
|
"dependencies": {
|
|
51
88
|
"chalk": "^5.6.2",
|
|
52
89
|
"commander": "^11.1.0",
|
|
90
|
+
"execa": "^9.6.1",
|
|
53
91
|
"madge": "^8.0.0",
|
|
54
92
|
"yaml": "^2.8.2"
|
|
55
93
|
},
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
"dev": "tsup --watch",
|
|
59
|
-
"test": "vitest run",
|
|
60
|
-
"test:watch": "vitest",
|
|
61
|
-
"test:unit": "vitest run tests/unit",
|
|
62
|
-
"test:integration": "vitest run tests/integration",
|
|
63
|
-
"test:e2e": "vitest run tests/e2e",
|
|
64
|
-
"test:coverage": "vitest run --coverage",
|
|
65
|
-
"typecheck": "node bin/spx.js validation typescript",
|
|
66
|
-
"typecheck:production": "node bin/spx.js validation typescript --scope production",
|
|
67
|
-
"lint": "node bin/spx.js validation lint",
|
|
68
|
-
"lint:fix": "node bin/spx.js validation lint --fix",
|
|
69
|
-
"lint:production": "node bin/spx.js validation lint --scope production",
|
|
70
|
-
"validate": "node bin/spx.js validation all",
|
|
71
|
-
"validate:production": "node bin/spx.js validation all --scope production",
|
|
72
|
-
"knip": "node bin/spx.js validation knip",
|
|
73
|
-
"circular": "node bin/spx.js validation circular",
|
|
74
|
-
"format": "prettier --write .",
|
|
75
|
-
"format:check": "prettier --check ."
|
|
76
|
-
}
|
|
77
|
-
}
|
|
94
|
+
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316"
|
|
95
|
+
}
|