-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.06 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": "@mateonunez/lyra-impact",
"version": "0.4.0",
"description": "Create a Lyra database from anywhere",
"main": "./dist/cjs/runtimes/server/index.js",
"module": "./dist/esm/runtimes/server/index.js",
"types": "./dist/esm/runtimes/server/index.d.ts",
"browser": "./dist/client/index.js",
"homepage": "https://github.com/mateonunez/lyra-impact#readme",
"repository": {
"type": "git",
"url": "https://github.com/mateonunez/lyra-impact.git"
},
"bugs": {
"url": "https://github.com/mateonunez/lyra-impact/issues"
},
"files": [
"dist"
],
"scripts": {
"format": "prettier --write \"src/**/*.{ts,js}\" --ignore-path .gitignore",
"lint": "npm run format && eslint . --ext .js,.ts --ignore-path .gitignore",
"test": "npm run lint && c8 -c ./src/tests/config/c8.json tap --rcfile=./src/tests/config/tap.yml ./src/tests/**/*.test.ts",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:browser": "esbuild --bundle --sourcemap --target=es2019 --format=esm --outfile=./dist/client/index.js ./src/runtimes/client/index.ts",
"build": "rimraf ./dist && npm run build:esm && npm run build:cjs && npm run build:browser",
"prepare": "husky install"
},
"keywords": [
"lyra",
"impact",
"full-text search",
"supercharged",
"database"
],
"author": {
"email": "mateonunez95@gmail.com",
"name": "Mateo Nunez",
"url": "https://github.com/mateonunez"
},
"license": "MIT",
"dependencies": {
"@lyrasearch/lyra": "^0.4.1",
"@mateonunez/lyra-schema-resolver": "^0.1.3",
"undici": "^5.15.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"c8": "^7.12.0",
"esbuild": "^0.17.0",
"eslint": "^8.31.0",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"rimraf": "^4.0.4",
"tap": "^16.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}