-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "@mateonunez/orama-plugin-boilerplate",
"version": "0.2.0",
"description": "Create your Orama's schema following the official specification",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"browser": "./dist/client/index.js",
"type": "module",
"homepage": "https://github.com/mateonunez/orama-plugin-boilerplate#readme",
"repository": {
"type": "git",
"url": "https://github.com/mateonunez/orama-plugin-boilerplate.git"
},
"bugs": {
"url": "https://github.com/mateonunez/orama-plugin-boilerplate/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/index.ts",
"build": "rimraf ./dist && npm run build:esm && npm run build:cjs && npm run build:browser",
"prepare": "husky install"
},
"keywords": [
"orama",
"plugin",
"boilerplate"
],
"author": {
"email": "mateonunez95@gmail.com",
"name": "Mateo Nunez",
"url": "https://github.com/mateonunez"
},
"license": "MIT",
"devDependencies": {
"@orama/orama": "2.0.1",
"@types/node": "^20.8.6",
"@types/tap": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"c8": "^8.0.1",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tap": "^16.3.9",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
}
}