-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 943 Bytes
/
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
{
"name": "@d2foundry/search",
"private": true,
"version": "1.4.0",
"module": "./dist/index.js",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "bun run ./src/server.ts",
"build": "tsc && bun build ./src/index.ts --outdir ./dist --target browser --minify",
"lint": "bunx eslint && bun run prettier-format",
"prettier-format": "prettier --config .prettierrc 'src/**/*.{ts,js}' --write"
},
"type": "module",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"bun-types": "latest",
"bungie-api-ts": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"semantic-release": "^21.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fuse.js": "^6.6.2",
"lz-string": "^1.5.0"
}
}