This repository has been archived by the owner on May 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.73 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
{
"name": "sanity-typed-schema-builder",
"version": "0.0.0-development",
"description": "Build Sanity schemas declaratively and get typescript types of schema values for free!",
"keywords": ["sanity", "schema", "typescript", "builder", "zod"],
"homepage": "https://saiichihashimoto.github.io/sanity-typed-schema-builder",
"repository": "github:saiichihashimoto/sanity-typed-schema-builder",
"license": "MIT",
"author": "Saiichi Hashimoto (http://saiichihashimoto.com)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsup",
"dev": "concurrently --prefix-colors \"auto\" npm:dev:*",
"dev:build": "npm run build -- --no-dts --watch",
"dev:test": "npm run test -- --watch",
"lint": "git add . && cross-env NO_FIX=1 lint-staged --shell --verbose --no-stash --diff \"4b825dc642cb6eb9a060e54bf8d69288fbee4904\"",
"prepare": "is-ci || concurrently --timings --prefix-colors \"auto\" npm:prepare:*",
"prepare:brew": "brew bundle",
"prepare:husky": "husky install",
"test": "jest --color"
},
"dependencies": {
"@portabletext/types": "2.0.2",
"@sanity-typed/schema-builder": "2.2.4",
"@types/lodash": "4.14.194",
"lodash": "4.17.21",
"type-fest": "2.19.0",
"zod": "3.21.4"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@jest/globals": "29.5.0",
"@jest/types": "29.5.0",
"@standard-configs/prettier-plugin": "1.0.11",
"@total-typescript/ts-reset": "0.4.2",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/jest": "29.5.1",
"@types/lint-staged": "13.2.0",
"@typescript-eslint/eslint-plugin": "5.59.2",
"concurrently": "8.0.1",
"cross-env": "7.0.3",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-lodash-fp": "2.2.0-a1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-unicorn": "46.0.0",
"husky": "8.0.1",
"imagemin-lint-staged": "0.5.1",
"is-ci": "3.0.1",
"jest": "29.5.0",
"lint-staged": "13.0.3",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.12.8",
"sanity": "3.9.1",
"semantic-release": "21.0.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsup": "6.7.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"sanity": "^3.2.0"
},
"engines": {
"node": "^18.12.1"
}
}