-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.06 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
{
"private": true,
"type": "module",
"name": "extension-workspace",
"packageManager": "pnpm@10.28.0",
"description": "The monorepo of all things Extension.js, including the Extension.js CLI, its programs, packages, website, and documentation.",
"homepage": "https://extension.js.org/",
"pnpm": {
"overrides": {
"postcss": "^8.5.18",
"devalue": "^5.6.4",
"serialize-javascript": "^7.0.3",
"yauzl": "^3.2.1",
"vite": "^8.0.16",
"which": "^4.0.0",
"js-yaml": "^4.3.0",
"read-yaml-file": "^2.1.0"
}
},
"scripts": {
"compile": "node scripts/run-compile.mjs",
"extension": "dotenv -- node programs/extension/dist/cli.cjs",
"watch": "node scripts/run-watch.mjs",
"format": "node scripts/format-wrapper.cjs",
"lint": "biome lint . --files-max-size=262144",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "node scripts/run-test.mjs",
"test:scripts": "node --test scripts/__spec__/*.spec.mjs",
"test:cli": "node scripts/run-test.mjs cli",
"test:build": "node scripts/run-test.mjs develop",
"test:dev": "node scripts/run-test.mjs develop",
"test:e2e": "pnpm exec playwright test",
"smoke:npx": "node scripts/smoke-npx.mjs",
"smoke:first-dev": "node scripts/validate-first-dev-run.mjs",
"smoke:content-template-first-dev": "node scripts/verify-content-template-first-dev.mjs",
"smoke:content-reload": "node scripts/validate-content-reload-no-hard-reload.mjs",
"smoke:open-action": "node scripts/validate-open-action-trigger.mjs",
"smoke:session-lifecycle": "node scripts/validate-session-lifecycle.mjs",
"ci:test:core": "pnpm run test:dev",
"ci:test:develop": "pnpm run test:dev",
"ci:test:cli": "pnpm run test:cli",
"ci:test:create": "node scripts/run-test.mjs create",
"ci:test:browser": "pnpm run test:dev",
"ci:test:plugin-css": "pnpm run test:dev",
"ci:test:plugin-compatibility": "pnpm run test:dev",
"ci:test:plugin-static-assets": "pnpm run test:dev",
"ci:test:plugin-extension": "pnpm run test:dev",
"ci:test:plugin-js-frameworks": "pnpm run test:dev",
"ci:test:plugin-compilation": "pnpm run test:dev",
"ci:test:toolchain-preflight": "pnpm --dir programs/develop exec vitest run lib/__spec__/optional-deps-resolver.spec.ts",
"postcompile": "node scripts/build-extensions.cjs",
"prepare": "husky",
"check:prose": "node scripts/check-prose.mjs",
"check:messaging": "node scripts/check-messaging.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@playwright/test": "^1.58.2",
"@types/chrome": "^0.1.37",
"@types/node": "^26",
"@types/webextension-polyfill": "0.12.5",
"ajv": "8.18.0",
"cross-env": "^10.1.0",
"cross-spawn": "^7.0.6",
"dotenv-cli": "^11.0.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"serialize-javascript": "^7.0.5",
"tsx": "^4.21.0",
"turbo": "^2.9.14",
"typescript": "7.0.2",
"vite": "^8.1.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}