forked from flbulgarelli/headbreaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "headbreaker-ts",
"version": "4.0.5",
"packageManager": "bun@1.3.12",
"description": "Jigsaw puzzles library written in TypeScript",
"author": "Franco Leonardo Bulgarelli",
"license": "ISC",
"homepage": "https://github.com/ShadowNineX/headbreaker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ShadowNineX/headbreaker.git"
},
"bugs": {
"url": "https://github.com/ShadowNineX/headbreaker/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"all": "bun run typecheck && bun test && bun run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish:npm": "bun run build && bun publish --access public",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"optionalDependencies": {
"konva": "^10.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@vitest/coverage-v8": "^4.1.4",
"canvas": "^3.2.3",
"eslint": "^10.2.1",
"jiti": "^2.6.1",
"jsdom": "^29.0.2",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
}
}