-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.21 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.21 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
{
"name": "@blend65/monorepo",
"version": "0.0.1",
"description": "Blend65 - A multi-target, ahead-of-time compiled language for high-performance 6502 family game development",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0 <2.0.0"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"packages/*",
"packages/*/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"clean": "yarn self:clean && turbo run clean",
"self:clean": "rm -rf .turbo",
"docs": "turbo run docs",
"docs:dev": "turbo run docs:dev",
"lockstep": "tsx scripts/lockstep.ts",
"lockstep:version:auto": "tsx scripts/lockstep.ts version --type auto --ci",
"lockstep:version:patch": "tsx scripts/lockstep.ts version --type patch --ci",
"lockstep:version:minor": "tsx scripts/lockstep.ts version --type minor --ci",
"lockstep:version:major": "tsx scripts/lockstep.ts version --type major --ci",
"lockstep:publish:latest": "tsx scripts/lockstep.ts publish --tag latest --git-push",
"lockstep:publish:next": "tsx scripts/lockstep.ts publish --tag next --git-push",
"lockstep:publish:v5": "tsx scripts/lockstep.ts publish --tag next --git-push",
"ncu": "ncu -u && yarn workspaces run ncu -u && rm -fR node_modules yarn.lock && yarn install && yarn clean && yarn build && yarn test"
},
"devDependencies": {
"@manypkg/get-packages": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"npm-check-updates": "^19.3.1",
"prettier": "^3.8.0",
"tsx": "^4.21.0",
"turbo": "^2.7.5",
"typescript": "^5.9.3",
"vitest": "4.0.17"
},
"repository": {
"type": "git",
"url": "https://github.com/blendsdk/blend65.git"
},
"author": "TrueSoftware B.V. <info@truesoftware.nl>",
"license": "Elastic-2.0",
"keywords": [
"programming-language",
"sdk",
"monorepo"
]
}