-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 924 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
{
"name": "scramble-display",
"version": "0.6.0",
"description": "A library to display puzzle scrambles.",
"type": "module",
"types": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"repository": "github:cubing/scramble-display",
"scripts": {
"prepublishOnly": "make prepublishOnly"
},
"author": "Lucas Garron <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"cubing": "^0.53.10"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cubing/deploy": "^0.1.8",
"barely-a-dev-server": "^0.6.0",
"esbuild": "^0.19.2",
"typescript": "^5.2.2"
},
"files": [
"/LICENSE.md",
"/README.md",
"/package.json",
"/package-lock.json",
"/dist/**/*",
"/src/scramble-display/**/*"
],
"@cubing/deploy": {
"https://experiments.cubing.net/scramble-display": {}
}
}