-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 946 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@cubing/scramble-table",
"description": "A UI for physical scramble tables at cubing competitions.",
"version": "0.2.4",
"type": "module",
"publishConfig": {
"access": "public"
},
"module": "./dist/lib/index.js",
"main": "./dist/lib/index.js",
"bin": "./dist/bin/main.js",
"license": "MPL-2.0",
"exports": {
".": {
"import": "./dist/lib/index.js"
}
},
"engines": {
"node": ">=19"
},
"files": [
"dist"
],
"scripts": {
"build": "make build",
"prepublishOnly": "make prepublishOnly"
},
"dependencies": {
"@fontsource/ubuntu": "^5.0.8",
"age-encryption": "^0.2.0",
"array-buffer-to-hex": "^1.0.0",
"cubing": "^0.45.0",
"hex-to-array-buffer": "^2.0.0",
"random-uint-below": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.8.10",
"barely-a-dev-server": "^0.6.0",
"typescript": "^5.2.2"
}
}