-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "shopify-performance-analyzer",
"version": "0.1.0",
"description": "Analyze Shopify storefront performance and detect common issues",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"shopify-analyze": "./dist/cli/index.js"
},
"keywords": [
"shopify",
"performance",
"analyzer",
"cli",
"playwright",
"storefront",
"web-performance"
],
"author": "Angelo Prabajith",
"repository": {
"type": "git",
"url": "https://github.com/angeloprabajith/shopify-performance-analyzer"
},
"files": [
"dist/",
"data/"
],
"scripts": {
"build": "tsc && npm run --prefix web build",
"build:core": "tsc",
"dev": "npm run --prefix web dev",
"dev:core": "tsc --watch",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm run test"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.5.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"chalk": "^5.6.2",
"playwright": "1.58.2"
}
}