-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "scatterplot-for-ebay",
"version": "1.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=21"
},
"scripts": {
"vendor": "node scripts/vendor.mjs",
"postinstall": "node scripts/vendor.mjs",
"lint": "web-ext lint",
"build": "npm run vendor && web-ext build --overwrite-dest",
"sign": "web-ext sign --channel=listed",
"test": "cross-env TZ=Australia/Sydney node --test \"test/**/*.test.mjs\"",
"format": "prettier --write ."
},
"dependencies": {
"chart.js": "^4.5.1",
"easy-currencies": "^1.8.3"
},
"devDependencies": {
"cross-env": "^10.1.0",
"esbuild": "^0.25.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"web-ext": "^10.3.0"
},
"webExt": {
"ignoreFiles": [
"node_modules/**",
"scripts",
"scripts/**",
"test",
"test/**",
".claude/**",
".git/**",
"web-ext-artifacts/**",
"package.json",
"package-lock.json",
".gitignore",
"README.md",
"ARCHITECTURE.md",
"CLAUDE.md"
]
}
}