-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 894 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 894 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
{
"name": "cube-state-engine",
"version": "1.4.0",
"description": "An efficient representation in memory for tracking the Rubik's cube state on each movement.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --watch",
"build": "tsup src/index.js --format cjs,esm --dts",
"lint": "tsc"
},
"keywords": [
"rubiks-cube",
"puzzle",
"virtualization",
"cube-tracking"
],
"author": "Bryan Lundberg",
"license": "MIT",
"homepage": "https://github.com/bryanlundberg/cube-state-engine#readme",
"repository": {
"type": "git",
"url": "https://github.com/bryanlundberg/cube-state-engine"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
}
}