-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "@laserware/arcade",
"version": "3.13.3",
"description": "Miscellaneous utility functions.",
"author": "Mike Rourke <mike.w.rourke@gmail.com> (https://mikerourke.dev/)",
"license": "MIT",
"repository": {
"url": "git+https://github.com/laserware/arcade.git",
"type": "git"
},
"homepage": "https://laserware.github.io/arcade/",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"utilities"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepublishOnly": "bun run build",
"preversion": "bun run lint && bun run typecheck",
"version": "bun run format && git add -A src",
"postversion": "git push && git push --tags",
"ci": "biome ci src",
"docs:generate": "typedoc --options typedoc.json",
"docs:serve": "mkdir -p ./site && cd ./site && bunx vite",
"format": "biome check --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true --write src",
"lint": "biome lint src",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/node": "^22",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}