-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "psst",
"homepage": ".",
"version": "1.1.2",
"description": "library that provides sonification primitives to make data accessible.",
"source": "src/sonifier.ts",
"exports": {
"require": "./dist/sonifier.cjs",
"default": "./dist/sonifier.modern.js"
},
"main": "./dist/sonifier.cjs",
"module": "./dist/sonifier.module.js",
"unpkg": "./dist/sonifier.umd.js",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"bundle": "microbundle",
"watch:bundle": "microbundle watch",
"start": "react-scripts start",
"eject": "react-scripts eject",
"build": "react-scripts build",
"serve": "live-server --open=public/index.html",
"dev": "concurrently 'npm:watch:*'",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"pretify": "prettier --write src/**",
"makecode": "cd makecode-microbit && mkc && cp built/binary.hex binary.hex"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@types/node": "^16.11.6",
"d3": "^7.1.1",
"jacdac-ts": "^1.24.20",
"react-jacdac": "^1.1.3",
"rxjs": "^7.5.2",
"rxjs-spy": "^8.0.2",
"typedoc": "^0.22.11",
"webusb": "^2.2.0"
},
"devDependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.2",
"@mui/x-data-grid": "^5.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"ajv": "^8.7.1",
"arquero": "^4.8.7",
"chai": "^4.3.4",
"concurrently": "^6.3.0",
"csv-parser": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"live-server": "^1.2.1",
"microbundle": "^0.14.1",
"mocha": "^9.1.3",
"monaco-editor": "^0.29.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"semantic-release": "^18.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vega": "^5.21.0",
"vega-embed": "^6.20.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": "https://github.com/make4all/psst.git",
"author": "Jennifer Mankoff <jmankoff@cs.washington.edu>"
}