-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 KB
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
45
46
47
48
49
50
51
52
{
"name": "reddojs",
"type": "module",
"version": "0.0.8",
"private": true,
"packageManager": "pnpm@10.20.0",
"description": "A tiny undo/redo utility package for JavaScript, React, Vue, and Svelte.",
"author": "Eihab Khan <yo@eihab.me>",
"keywords": [
"svelte",
"vue",
"undo",
"redo",
"utility"
],
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"test": "vitest",
"prepare": "husky",
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "pnpm -r build",
"bump": "bumpp package.json packages/*/package.json --commit \"chore: release v\" --push --tag",
"release": "pnpm bump"
},
"dependencies": {
"@texel/color": "^1.1.10",
"bumpp": "^10.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^22.10.5",
"eslint": "^9.34.0",
"husky": "^9.1.7",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}