This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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": "create-tigris-app",
"version": "1.0.1",
"keywords": [
"database",
"nosql",
"tigris",
"starter",
"search",
"vector search"
],
"description": "Utility to create applications to interact with Tigris, the open source developer data platform MongoDB alternative",
"repository": "github:tigrisdata/create-tigris-app",
"author": "Tigris team <[email protected]>",
"license": "Apache 2.0",
"bin": {
"create-tigris-app": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf ./dist/",
"build": "npx tsc && chmod +x ./dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@tigrisdata/core": "latest",
"async-retry": "^1.3.3",
"chalk": "2.4.2",
"commander": "^9.4.1",
"cross-spawn": "6.0.5",
"enquirer": "^2.3.6",
"got": "10.7.0",
"prompts": "^2.4.2",
"rimraf": "3.0.2",
"tar": "4.4.19",
"ts-node": "^10.9.1",
"update-check": "1.5.4",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/cross-spawn": "6.0.0",
"@types/node": "^18.7.20",
"@types/prompts": "2.0.1",
"@types/rimraf": "3.0.0",
"@types/tar": "^6.1.3",
"@types/validate-npm-package-name": "3.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-functional": "^4.2.2",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "2.7.1",
"typescript": "^4.7.3"
},
"engines": {
"node": ">=14.6.0"
}
}