-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.21 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
{
"name": "pixelmap.io",
"version": "1.0.0",
"description": "A little over a decade ago, a website called MillionDollarHomePage.com was created by Alex Tew. The page consisted (and still consists) of a 1000x1000 pixel grid, with a total of 1,000,000 pixels being sold for $1 each. Because the pixels themselves were too small to be seen individually, they were sold in 10x10 pixel tiles for $100 each. The purchasers of each tile then provided a 10x10 pixel image to be used, as well as optionally a URL for the tile to link to. Once an image had been configured for a given tile however, it could never be changed (nor could the ownership of the tile).",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "pnpm run test:frontend && pnpm run test:backend",
"test:frontend": "cd frontend && pnpm test",
"test:backend": "cd backend && go test ./...",
"test:coverage": "pnpm run test:frontend:coverage && pnpm run test:backend:coverage",
"test:frontend:coverage": "cd frontend && pnpm run test:coverage",
"test:backend:coverage": "cd backend && go test ./... -coverprofile=coverage.out && go tool cover -html=coverage.out -o coverage.html",
"test:coverage:combined": "pnpm run test:coverage && node ./combine-coverage.js",
"codecov": "pnpm run test:coverage && node ./combine-coverage.js && curl -Os https://uploader.codecov.io/latest/linux/codecov && chmod +x codecov && ./codecov"
},
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.23.0",
"dependencies": {
"typescript": "^5.9.2"
},
"pnpm": {
"overrides": {
"@babel/core": "^7.29.6",
"@babel/runtime@7": "^7.26.10",
"@tootallnate/once": "^2.0.1",
"ajv@6": "^6.14.0",
"bn.js@4": "^4.12.3",
"bn.js@5": "^5.2.3",
"brace-expansion@1": "^1.1.18",
"brace-expansion@2": "^2.1.4",
"elliptic": "^6.6.1",
"flatted": "^3.4.2",
"form-data": "^4.0.6",
"glob@10": "^10.5.0",
"immutable": "^5.1.8",
"js-yaml@3": "^3.15.0",
"js-yaml@4": "^4.3.0",
"lodash": "^4.18.0",
"minimatch@3": "^3.1.4",
"minimatch@9": "^9.0.7",
"picomatch@2": "^2.3.2",
"picomatch@4": "^4.0.4",
"postcss": "^8.5.23",
"sharp": "^0.35.0",
"ws@7": "^7.5.11",
"ws@8": "^8.21.0",
"yaml": "^2.8.3"
}
}
}