-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.35 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
{
"name": "@sanity/embeddings-index-cli",
"version": "1.0.10",
"description": "CLI for creating and managing embeddings indexes",
"keywords": [
"sanity",
"cli"
],
"homepage": "https://github.com/sanity-io/embeddings-index-cli#readme",
"bugs": {
"url": "https://github.com/sanity-io/embeddings-index-cli/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sanity-io/embeddings-index-cli.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.js",
"default": "./dist/index.esm.js"
},
"./package.json": "./package.json"
},
"bin": {
"embeddings-index": "./bin/embeddings-index.js"
},
"binname": "embeddings-index",
"main": "./dist/index.js",
"module": "./dist/index.esm.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin",
"src"
],
"scripts": {
"build": "run-s clean &&pkg-utils build --strict && pkg-utils --strict",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"lint": "eslint .",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^4.1.2",
"configstore": "^6.0.0",
"execa": "^5.1.1",
"meow": "^9.0.0",
"outdent": "^0.8.0",
"zod": "^3.22.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@sanity/pkg-utils": "^2.4.6",
"@sanity/semantic-release-preset": "^4.1.3",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"prettier-plugin-packagejson": "^2.4.5",
"react-is": "^18.2.0",
"rimraf": "^5.0.1",
"sanity": "^3.15.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"sanity": "^3.11.0"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}