-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.86 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
{
"name": "@allxsmith/bestax",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test && node --test \"scripts/*.test.mjs\"",
"test:coverage": "turbo run test:coverage",
"bundle:stats": "turbo run bundle:stats",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,md,mdx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mjs,md,mdx}\"",
"lint": "turbo run lint && eslint scripts docs/scripts",
"check:conformance": "node scripts/check-conformance.mjs",
"check:urls": "node scripts/check-pointer-urls.mjs",
"gen:api-sources": "node scripts/gen-api-sources.mjs",
"gen:api-docs": "node scripts/gen-api-docs.mjs",
"gen:api-docs:check": "node scripts/gen-api-docs.mjs && git diff --exit-code -- docs/docs/api",
"gen:catalog": "node scripts/gen-component-catalog.mjs",
"gen:catalog:check": "node scripts/gen-component-catalog.mjs && git diff --exit-code -- skills/bestax-custom-component/references/component-catalog.md",
"gen:mcp": "node scripts/gen-mcp-index.mjs",
"gen:mcp:check": "node scripts/gen-mcp-index.mjs && git add --intent-to-add --all bestax-mcp/data && git diff --exit-code -- bestax-mcp/data",
"gen": "pnpm gen:api-docs && pnpm gen:catalog && pnpm gen:mcp",
"all": "turbo run build typecheck test test:coverage bundle:stats && node --test \"scripts/*.test.mjs\" && pnpm run lint && pnpm run format:check && turbo run build-storybook --filter=@allxsmith/bestax-bulma",
"storybook": "turbo run storybook --filter=@allxsmith/bestax-bulma",
"docs": "turbo run docs --filter=@allxsmith/bestax-docs",
"release": "turbo run release",
"deploy": "turbo run deploy",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint-react/eslint-plugin": "^5.18.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.3",
"bulma": "^1.0.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^17.8.0",
"husky": "^9.1.7",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"semantic-release": "^25.0.8",
"ts-jest": "^29.4.12",
"turbo": "^2.10.7",
"typescript": "^6.0.3",
"wrangler": "^4.114.0"
},
"keywords": [
"react",
"bulma",
"typescript",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/allxsmith/bestax.git"
},
"author": "Alex Smith",
"license": "MIT",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22"
}
}