-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 931 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 931 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
{
"name": "circular-history",
"version": "1.0.8",
"type": "module",
"main": "./dist/index.js",
"description": "Data structure with a fixed number of items of a specific type. Supports adding elements, moving backward and forward with wrapping. Suitable for undo/redo implementations such as history management.",
"scripts": {
"test": "vitest .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"build": "esbuild src/circular-history.js --bundle --packages=external --format=esm --minify --keep-names --outfile=./dist/index.js",
"prepare": "husky",
"prepare-release": "pnpm build && node ./scripts/prepare-release.js"
},
"devDependencies": {
"esbuild": "^0.27.2",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"vite": "npm:rolldown-vite@7.2.5",
"vitest": "^4.0.17"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}
}