-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.58 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
{
"name": "@jsvision/monorepo",
"private": true,
"version": "1.7.1",
"description": "Monorepo for the jsvision terminal UI SDK",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"check:deps": "turbo run check:deps",
"check:docs": "turbo run check:docs",
"check:commit-attribution": "node scripts/check-commit-attribution.mjs",
"check:i18n-literals": "node scripts/check-i18n-literals.mjs",
"i18n:locales:update": "node scripts/update-i18n-locales.mjs",
"i18n:locales:check": "node scripts/update-i18n-locales.mjs --check",
"i18n:reviews:check": "yarn build && node scripts/check-i18n-reviews.mjs",
"verify:local": "yarn check:commit-attribution && node scripts/verify-local.mjs",
"verify": "yarn check:commit-attribution && yarn lint && yarn check:i18n-literals && yarn i18n:locales:check && turbo run typecheck build check:docs && turbo run test && yarn perf:check && yarn plugin:check",
"verify:shipped": "yarn check:commit-attribution && yarn lint && yarn check:i18n-literals && turbo run typecheck build test check:docs --filter=@jsvision/core --filter=@jsvision/ui --filter=@jsvision/web --filter=@jsvision/files",
"gate": "node scripts/gate.mjs",
"plugin:check": "node scripts/check-plugin.mjs",
"plugin:update": "node scripts/update-plugin.mjs",
"plugin:version": "node scripts/sync-plugin-version.mjs",
"check:code-editor-release": "node scripts/check-code-editor-release.mjs",
"release:prepare": "yarn lockstep:version --no-git-commit && node scripts/sync-package-versions.mjs && yarn plugin:version && yarn plugin:update && yarn plugin:check",
"perf:check": "node scripts/check-performance.mjs",
"doctor": "node scripts/jsvision-doctor.mjs",
"render:app": "tsx scripts/render-app.mjs",
"ncu:check": "ncu --root --workspaces -x \"@jsvision/* typescript\"",
"ncu": "ncu -u --root --workspaces -x \"@jsvision/* typescript\" && rm -rf node_modules yarn.lock && yarn install && yarn verify",
"lockstep:version": "yarn i18n:reviews:check && lockstep version --type auto --ci",
"lockstep:publish": "lockstep publish --tag latest --git-push --provenance",
"sync-package-versions": "node scripts/sync-package-versions.mjs",
"bench": "yarn workspace @jsvision/core bench",
"designer": "yarn workspace @jsvision/theme-designer start",
"docs:dev": "yarn workspace @jsvision/docs-site dev",
"docs:api": "yarn build && yarn workspace @jsvision/docs-site docs:api",
"docs:build": "yarn docs:api && yarn workspace @jsvision/docs-site vp:build",
"docs:check": "node packages/docs-site/scripts/check-docs-build.mjs",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@blendsdk/lockstep": "^1.3.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"npm-check-updates": "^22.2.9",
"openai": "^6.48.0",
"prettier": "^3.9.5",
"turbo": "^2.10.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.64.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}