-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 899 Bytes
/
package.json
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
{
"type": "module",
"dependencies": {
"@observablehq/plot": "^0.4.3",
"preact": "^10.7.1",
"purecss": "^2.1.0",
"xterm": "^4.18.0",
"xterm-addon-fit": "^0.5.0"
},
"devDependencies": {
"@types/d3-dsv": "^3.0.0",
"@types/node": "^17.0.27",
"@types/w3c-web-serial": "^1.0.2",
"ava": "^4.2.0",
"ava-fast-check": "^5.0.0",
"d3-dsv": "^3.0.1",
"esbuild": "^0.14.38",
"fast-check": "^2.24.0",
"typescript": "^4.6.3"
},
"scripts": {
"build": "esbuild src/app.ts src/app.css --bundle --sourcemap --outdir=site",
"check": "tsc --noEmit",
"dev": "npm run build -- --servedir=site",
"chrome": "open -a 'Google Chrome' http://127.0.0.1:8000/)",
"build-for-test": "esbuild src/csv.ts src/csv-test.ts --outdir=test --platform=node",
"test": "npm run check && npm run build-for-test && ava --no-color test/*-test.js"
}
}