forked from oramasearch/orama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "orama-monorepo",
"version": "1.1.0",
"description": "Next generation full-text search engine, written in TypeScript",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:orama": "cd packages/orama && npm run build",
"build:plugin-astro": "cd packages/plugin-astro && npm run build",
"build:plugin-data-persistence": "cd packages/plugin-data-persistence && npm run build",
"build:plugin-docusaurus": "cd packages/plugin-docusaurus && npm run build",
"build:plugin-match-highlight": "cd packages/plugin-match-highlight && npm run build",
"build:plugin-parsedoc": "cd packages/plugin-parsedoc && npm run build",
"format": "prettier -w packages",
"lint": "turbo lint",
"test": "turbo test",
"test:orama": "cd packages/orama && npm test",
"test:plugin-astro": "cd packages/plugin-astro && npm test",
"test:plugin-data-persistence": "cd packages/plugin-data-persistence && npm test",
"test:plugin-docusaurus": "cd packages/plugin-docusaurus && npm test",
"test:plugin-match-highlight": "cd packages/plugin-match-highlight && npm test",
"test:plugin-parsedoc": "cd packages/plugin-parsedoc && npm test",
"commit": "turbo lint && pnpm lint-staged && cz",
"prepare": "husky install .husky",
"version": "node scripts/version.mjs",
"publish-packages": "node scripts/release.mjs"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
"@types/node": "^18.11.18",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"c8": "^7.12.0",
"commitizen": "^4.2.6",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"execa": "^6.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"semver": "^7.3.8",
"simple-git": "^3.17.0",
"tap": "^16.3.2",
"tap-mocha-reporter": "^5.0.3",
"tape": "^5.6.1",
"tcompare": "^6.0.0",
"tsx": "^3.12.1",
"turbo": "^1.8.5",
"typescript": "^4.9.4"
},
"author": {
"name": "Michele Riva",
"email": "[email protected]",
"url": "https://github.com/MicheleRiva",
"author": true
},
"contributors": [
{
"name": "Paolo Insogna",
"email": "[email protected]",
"url": "https://cowtech.it",
"author": true
}
],
"license": "Apache-2.0",
"lint-staged": {
"*": [
"prettier packages/**/*.{js,ts,mjs,cjs,cts,json} --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-react-jsx",
"algoliasearch",
"eslint",
"typescript"
]
}
},
"engines": {
"node": ">= 16.0.0"
},
"dependencies": {
"@changesets/cli": "^2.26.0"
}
}