-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "@cloudflare/telescope",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [],
"author": "Cloudflare",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"img",
"support"
],
"bin": {
"telescope": "dist/src/cli.js"
},
"scripts": {
"build": "tsc && chmod +x dist/src/cli.js && cp -r src/templates dist/src/ && mkdir -p dist/processors/templates && cp -r processors/templates/* dist/processors/templates/",
"dev": "tsc --watch",
"start": "node dist/src/cli.js",
"test": "npm run build && vitest run",
"test:ci": "export CI=true; npm test",
"coverage": "vitest run --coverage",
"clean": "rm -rf node_modules results dist",
"clean:results": "rm -rf results",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "npx prettier --write .",
"prepublishOnly": "npm run build",
"postinstall": "npx playwright install"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/adm-zip": "^0.5.7",
"@types/ejs": "^3.1.5",
"@types/node": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.6",
"eslint": "^9.39.2",
"prettier": "^3.6.2",
"prettier-plugin-ejs": "^1.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.6",
"msw": "^2.12.10"
},
"dependencies": {
"@sitespeed.io/throttle": "^5.0.0",
"adm-zip": "^0.5.16",
"commander": "^10.0.0",
"ejs": "^3.1.10",
"ffmpeg": "^0.0.4",
"playwright": "^1.58.2",
"playwright-webkit": "^1.58.2",
"zod": "^3.25.76"
}
}