forked from certinia/debug-log-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.48 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
{
"name": "lana-ws",
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@prettier/plugin-oxc": "^0.2.2",
"@rolldown/plugin-node-polyfills": "^1.0.3",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@salesforce/playwright-vscode-ext": "^1.3.10",
"@swc/core": "^1.15.47",
"@swc/helpers": "^0.5.23",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@vscode/test-web": "^0.0.81",
"concurrently": "^10.0.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"rolldown": "^1.2.1",
"rollup": "^4.62.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-swc3": "^0.12.1",
"tsx": "^4.21.0",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-7": "npm:typescript@^7.0.2",
"typescript-eslint": "^8.65.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"bump-prerelease": "node ./scripts/pre-release.mjs",
"build": "node --run typecheck && NODE_ENV=production node --run build:dev",
"build:fast": "node --run typecheck && NODE_ENV=production node --run build:dev:fast",
"build:dev": "rm -rf lana/out && rollup -c rollup.config.mjs",
"build:dev:fast": "rolldown -c rolldown.config.ts",
"watch": "rm -rf lana/out && rollup -w -c rollup.config.mjs",
"watch:fast": "rolldown -w -c rolldown.config.ts",
"copy:package-docs": "node ./scripts/copy-package-docs.mjs",
"typecheck": "tsc -b",
"typecheck:tsc6": "tsc6 -b",
"lint": "concurrently -r -g 'eslint . --cache --cache-location node_modules/.cache/eslint/' 'prettier --cache **/*.{ts,css,md,mdx,scss} --check --experimental-cli' 'pnpm run typecheck'",
"test": "jest",
"test:ci": "jest --runInBand",
"test:e2e:web": "pnpm build && playwright test --config=lana/test/playwright/playwright.config.web.ts",
"serve:web": "pnpm build && tsx lana/test/playwright/web/headlessServer.ts",
"ci:install": "pnpm install --frozen-lockfile --prefer-offline --ignore-scripts",
"prettier-format": "prettier '**/*.ts' --cache --write --experimental-cli"
},
"lint-staged": {
"*.{ts,css,md,mdx,scss}": "prettier --cache --write --experimental-cli"
}
}