-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "undoh",
"author": "Denis Giffeler",
"private": false,
"type": "module",
"license": "GPL",
"version": "1.3.0",
"description": "This Typescript module provides an undo class that can be used to implement a simple undo/redo mechanism.",
"main": "lib/undo.js",
"types": "lib/undo.d.ts",
"exports": {
".": {
"import": "./lib/undo.js",
"types": "./lib/undo.d.ts"
}
},
"scripts": {
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/giffeler/undoh.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"undo-redo",
"undomanager",
"typescript",
"javascript",
"wasm"
],
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/giffeler/undoh/issues"
},
"homepage": "https://github.com/giffeler/undoh/blob/main/README.md",
"engines": {
"node": ">=17.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}