-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.28 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
{
"name": "@agent-ix/quire",
"description": "Structured document interaction library — Parse, query, and render markdown document sections as typed React components.",
"version": "0.2.2",
"license": "MIT",
"packageManager": "pnpm@10.33.4",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/agent-ix/quire.git"
},
"files": [
"dist/",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"help": "node scripts/help.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:json": "vitest run --reporter=json --outputFile=report.json || true",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" \"tests/**/*.{ts,tsx,js,jsx}\" \".storybook/**/*.{ts,tsx,js,jsx}\" && pnpm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "vite build",
"clean": "rm -rf node_modules dist coverage .pnpm-store",
"install:frozen": "pnpm install --frozen-lockfile",
"update-lock": "pnpm install --lockfile-only",
"version": "node scripts/build-tools.js version",
"info": "node scripts/build-tools.js info",
"docker:build": "docker build --secret id=github_token,env=GITHUB_TOKEN -t ghcr.io/agent-ix/quire .",
"prepublishOnly": "pnpm run build",
"tags": "npm dist-tag ls @agent-ix/quire --registry http://npm.ix/ || echo '(package not found or registry unavailable)'",
"pkg:add": "pnpm add",
"pkg:add-dev": "pnpm add -D",
"pkg:update": "pnpm update",
"pkg:update-latest": "pnpm update --latest",
"pkg:use-local": "pnpm dlx @agent-ix/js-deps use-local",
"pkg:use-upstream": "pnpm dlx @agent-ix/js-deps use-upstream",
"pkg:refresh-local": "pnpm dlx @agent-ix/js-deps refresh-local",
"storybook": "storybook dev -p 6006",
"storybook:ci": "storybook dev -p 6006 --ci",
"build-storybook": "storybook build",
"storybook:build-dev": "node scripts/storybook-deploy.js build-dev",
"storybook:kind-load": "node scripts/storybook-deploy.js kind-load",
"storybook:deploy": "node scripts/storybook-deploy.js deploy",
"storybook:halt": "node scripts/storybook-deploy.js halt",
"storybook:health": "node scripts/storybook-deploy.js health",
"storybook:logs": "node scripts/storybook-deploy.js logs"
},
"devDependencies": {
"@storybook/react": "^10.4.0",
"@storybook/react-vite": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.6",
"add": "^2.0.6",
"eslint": "^10.4.0",
"eslint-plugin-prettier": "^5.5.5",
"jsdom": "^29.1.1",
"pnpm": "^11.1.3",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"storybook": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vite-plugin-dts": "^5.0.1",
"vitest": "^4.1.6"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}