-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 KB
/
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
43
{
"name": "scramble-display",
"version": "0.5.5",
"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": {
"build": "npm run build-types && npm run build-esm && npm run build-bundle-global",
"build-types": "npx tsc -p tsconfig.json",
"build-esm": "node script/build-esm.js",
"build-bundle-global": "node script/build-bundle-global.js",
"build-site": "node script/build-site.js",
"dev": "node script/dev.js",
"clean": "rm -rf ./.cache ./dist",
"prepack": "npm run clean && npm run build"
},
"author": "Lucas Garron <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"cubing": "^0.42.0"
},
"devDependencies": {
"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/**/*"
]
}