-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.45 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.45 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
{
"name": "cheatron-monorepo",
"version": "2.0.0",
"private": true,
"description": "TypeScript toolkit for Windows x64 native systems programming, memory manipulation, and process instrumentation.",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"cheatron",
"monorepo",
"windows",
"x64",
"native",
"systems-programming",
"instrumentation",
"assembler",
"disassembler",
"memory-manipulation"
],
"author": "Cheatron",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cheatron/Core.git"
},
"bugs": {
"url": "https://github.com/Cheatron/Core/issues"
},
"homepage": "https://github.com/Cheatron/Core#readme",
"packageManager": "npm@10.9.2",
"scripts": {
"build": "tsc --build --verbose",
"build:clean": "npm run clean && npm run build",
"clean": "tsc --build --clean && find packages -name dist -type d -exec rm -rf {} + 2>/dev/null; true",
"download-deps": "tsx scripts/download-deps.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:headless": "vitest run",
"lint": "eslint \"packages/*/src/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\" --cache",
"lint:fix": "eslint \"packages/*/src/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\" --cache --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --build --force",
"prepare": "husky",
"postinstall": "npm run download-deps",
"preinstall": "npx only-allow npm",
"changeset": "changeset",
"version": "2.0.0",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^8.57.0",
"@types/node": "^20.11.19",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^14.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "~5.5.4",
"typescript-eslint": "^7.0.2",
"unzipper": "^0.12.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^1.3.1"
}
}