-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.7 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@outcomeeng/spx",
"version": "0.2.0",
"description": "Developer CLI for code validation and session management",
"type": "module",
"bin": {
"spx": "./bin/spx.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"bin"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/outcomeeng/spx.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:coverage": "vitest run --coverage",
"typecheck": "node bin/spx.js validation typescript",
"typecheck:production": "node bin/spx.js validation typescript --scope production",
"lint": "node bin/spx.js validation lint",
"lint:fix": "node bin/spx.js validation lint --fix",
"lint:production": "node bin/spx.js validation lint --scope production",
"validate": "node bin/spx.js validation all",
"validate:production": "node bin/spx.js validation all --scope production",
"knip": "node bin/spx.js validation knip",
"circular": "node bin/spx.js validation circular",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "lefthook install",
"prepublishOnly": "pnpm run validate && pnpm test && pnpm run build"
},
"keywords": [
"cli",
"validation",
"session",
"workflow"
],
"author": "Outcome Engineering",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/madge": "^5.0.3",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"fast-check": "^4.5.3",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lefthook": "^1.10.10",
"jsonc-parser": "^3.3.1",
"knip": "^5.80.0",
"prettier": "^3.7.4",
"tsup": "^8.0.1",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.18"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^11.1.0",
"execa": "^9.6.1",
"madge": "^8.0.0",
"yaml": "^2.8.2"
},
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316"
}