-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "sanity-pills",
"description": "A collection of utilities and helpers for the Sanity.io Studio.",
"version": "2.0.0",
"author": "Corey Ward <[email protected]>",
"license": "MPL-2.0",
"repository": "https://github.com/coreyward/sanity-pills",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"/dist"
],
"sideEffects": false,
"dependencies": {
"@sanity/types": "^3.8.2",
"slugify": "^1.4.6"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"esbuild": "^0.17.11",
"esbuild-jest-transform": "^1.1.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-i": "^2.28.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"prettier": "^2.7.1",
"size-limit": "^8.2.4",
"typescript": "^5.0.0"
},
"scripts": {
"prebuild": "tsc",
"build": "node ./build.js",
"postbuild": "node ./scripts/injectFnComments.js && ./scripts/postbuild.sh",
"prepublish": "yarn run build",
"size": "size-limit",
"test": "jest"
},
"size-limit": [
{
"path": "dist/mjs/index.js",
"limit": "10 KB"
},
{
"path": "dist/cjs/index.js",
"limit": "15 KB"
}
]
}