-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.55 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
{
"private": true,
"type": "module",
"scripts": {
"@ci:build": "pnpm run build",
"@ci:lint": "eslint --format unix . && prettier . --check --log-level=warn",
"@ci:release": "pnpm run build && node scripts/pkg-toggle && changeset publish && node scripts/pkg-toggle && pnpm install --frozen-lockfile",
"@ci:test": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" MARKO_DEBUG=1 c8 pnpm test",
"@ci:version": "pnpm run build && pnpm run format && changeset version && pnpm install --lockfile-only",
"build": "pnpm --filter \"./packages/**\" --recursive --if-present run build",
"build:examples": "pnpm --filter \"./examples/*\" --recursive --if-present run build",
"change": "changeset add",
"format": "eslint --format unix --fix .; prettier . --write --log-level=warn",
"lint": "eslint --format unix . && prettier . --check --log-level=warn && cspell \"**/*.{md,ts,marko}\"",
"prepare": "husky",
"report": "open ./coverage/lcov-report/index.html",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=\"$NODE_OPTIONS --import tsx\" mocha",
"test:update": "cross-env UPDATE_EXPECTATIONS=1 pnpm test --update"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@marko/fixture-snapshots": "^2.2.1",
"@marko/run-adapter-netlify": "workspace:*",
"@marko/run-adapter-node": "workspace:*",
"@marko/run-adapter-static": "workspace:*",
"@marko/testing-library": "^6.4.1",
"@micro-frame/marko": "^1.10.4",
"@types/debug": "^4.1.13",
"@types/human-format": "^1.0.3",
"@types/jsdom": "^27.0.0",
"@types/micromatch": "^4.0.10",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.3",
"acorn": "^8.17.0",
"body-parser": "^2.3.0",
"c8": "^11.0.0",
"cross-env": "^10.1.0",
"cspell": "^10.0.1",
"diff": "^9.0.0",
"esbuild": "^0.27.4",
"eslint": "^10.5.0",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"express": "^5.2.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^17.0.7",
"make-fetch-happen": "^12.0.0",
"marko": "^5.39.7",
"micromatch": "^4.0.8",
"mocha": "^11.7.6",
"mocha-snap": "^5.0.1",
"netlify-cli": "^24.10.0",
"oxc-parser": "^0.136.0",
"prettier": "^3.8.4",
"prettier-plugin-packagejson": "^3.0.2",
"pretty-format": "^30.4.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.1",
"valibot": "^1.4.1",
"vite": "^8.0.16"
},
"packageManager": "pnpm@11.15.1"
}