-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 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
{
"name": "@laserware/dominator",
"version": "5.4.2",
"description": "Better ergonomics for working with the DOM and TypeScript.",
"author": "Mike Rourke <mike.w.rourke@gmail.com> (https://mikerourke.dev/)",
"license": "MIT",
"repository": {
"url": "git+https://github.com/laserware/dominator.git",
"type": "git"
},
"homepage": "https://laserware.github.io/dominator/",
"type": "module",
"browser": "dist/index.mjs",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"dom",
"typescript"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepublishOnly": "bun run build",
"preversion": "bun run check:biome && bun run check:types && bun run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check:biome": "biome check --write src",
"check:types": "tsc --noEmit",
"ci": "biome ci src",
"docs:generate": "typedoc --options typedoc.json",
"docs:serve": "mkdir -p ./site && cd ./site && bunx vite",
"test": "bun test"
},
"dependencies": {
"@laserware/arcade": "^3.21.2"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@happy-dom/global-registrator": "^18.0.1",
"@types/bun": "^1.2.18",
"@types/node": "^24.0.11",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}