-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 937 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 937 Bytes
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
{
"name": "cube-scramble",
"version": "0.1.7",
"description": "WCA-oriented scramble generator for cubes and related puzzles.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"test": "node --input-type=module -e \"import { getScramble, setSeed } from './dist/index.js'; setSeed('42'); console.log(getScramble('333'));\""
},
"keywords": [
"scramble",
"scrambler",
"rubiks",
"cube",
"wca",
"puzzle",
"nodejs",
"vite",
"nuxt",
"esm",
"cjs"
],
"author": "sheldonix",
"repository": {
"type": "git",
"url": "https://github.com/sheldonix/cube-scramble"
},
"license": "GPL-3.0-only",
"files": [
"dist"
],
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}