-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.46 KB
/
package.json
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
66
{
"name": "@liskadan/sliding-puzzles",
"version": "0.1.0",
"description": "All kinds of sliding puzzles",
"author": "WandererXII (https://github.com/WandererXII)",
"license": "GPL-3.0-or-later",
"type": "module",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/sliding-puzzles.d.ts",
"import": "./dist/esm/sliding-puzzles.js"
},
"./*": {
"types": "./dist/esm/*.d.ts",
"import": "./dist/esm/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/esm/*"
]
}
},
"devDependencies": {
"esbuild": "^0.24",
"oxlint": "^0.12",
"prettier": "^3",
"typescript": "^5",
"del-cli": "^6"
},
"scripts": {
"lint": "oxlint src/*.ts",
"format": "prettier --write .",
"format-check": "prettier --check .",
"clean": "del dist",
"compile": "tsc",
"bundle": "node esbuild.mjs",
"build": "$npm_execpath run clean && $npm_execpath run compile && $npm_execpath run bundle"
},
"files": [
"./src",
"./dist/esm",
"./dist/iife",
"./assets/css",
"./assets/preview.png",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WandererXII/sliding-puzzles.git"
},
"keywords": [
"game",
"sliding puzzles",
"puzzles",
"klotski",
"typescript",
"ui"
],
"bugs": {
"url": "https://github.com/WandererXII/sliding-puzzles/issues"
}
}