-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.42 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": "repos-to-sanity",
"version": "1.0.2",
"description": "Load your list of repositories into a dashboard widget in sanityio",
"keywords": [
"sanity",
"sanity-plugin"
],
"license": "MIT",
"author": "vinceflores <vincegabriel.flores@gmail.com>",
"repository": {
"url": "https://github.com/vinceflores/repos-to-sanity.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"ui:build": "tsc && vite build",
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch --strict",
"prepare": "husky install"
},
"sanityPlugin": {
"verifyPackage": {
"eslintImports": false,
"packageName": false
}
},
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@sanity/dashboard": "^3.1.6",
"@sanity/incompatible-plugin": "^1.0.4",
"@tanstack/react-query": "^5.51.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@sanity/pkg-utils": "^6.10.3",
"@sanity/plugin-kit": "^4.0.17",
"@sanity/semantic-release-preset": "^5.0.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanity": "^3.49.0",
"styled-components": "^6.1.11",
"typescript": "^5.5.3"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=18"
}
}