-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"name": "integer-sequence-visualizer",
"version": "1.0.0",
"description": "A live webpage that renders [OEIS](https://oeis.org) sequences with multiple visualization techniques and a first-class **null-model comparison layer** - so you can test whether the structure you see is a property of the sequence or an artifact of the rendering technique.",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:data": "node scripts/build-oeis-index.mjs",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bshepp/integer-sequence-visualizer.git"
},
"keywords": [],
"author": "Brian Sheppard",
"license": "MIT",
"bugs": {
"url": "https://github.com/bshepp/integer-sequence-visualizer/issues"
},
"homepage": "https://github.com/bshepp/integer-sequence-visualizer#readme",
"devDependencies": {
"@types/node": "^26.1.2",
"jsdom": "^29.1.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}