-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "mendoza",
"version": "3.0.8",
"description": "Mendoza, differ for structured documents",
"keywords": [
"mendoza",
"diff"
],
"homepage": "https://www.sanity.io/",
"bugs": {
"url": "https://github.com/sanity-io/mendoza-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/mendoza-js.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "pkg build --strict --check --clean",
"clean": "npx rimraf dist coverage",
"coverage": "npm test -- run --coverage",
"lint": "eslint . --ext .cjs,.js,.ts --report-unused-disable-directives",
"prepublishOnly": "npm run build",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"browserslist": "extends @sanity/browserslist-config",
"prettier": "@sanity/prettier-config",
"devDependencies": {
"@sanity/pkg-utils": "^6.11.14",
"@sanity/prettier-config": "^1.0.3",
"@sanity/semantic-release-preset": "^5.0.0",
"@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ls-engines": "^0.9.3",
"prettier": "^3.4.2",
"rimraf": "^4.4.1",
"semantic-release": "^24.2.0",
"typescript": "5.7.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.8",
"vitest-github-actions-reporter": "^0.11.1"
},
"engines": {
"node": ">=14.18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}