-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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": "schemeta",
"version": "0.2.3",
"private": false,
"homepage": "https://github.com/OllieJT/schemeta/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/olliejt/schemeta.git"
},
"bugs": {
"url": "https://github.com/olliejt/schemeta/issues"
},
"scripts": {
"build": "tsup",
"check": "pnpm run format:check && pnpm run typecheck && pnpm run lint",
"dev": "tsup --watch",
"format:check": "prettier . --check --ignore-unknown --no-error-on-unmatched-pattern",
"format": "prettier . --write --ignore-unknown --no-error-on-unmatched-pattern",
"lint:fix": "eslint --fix .",
"lint": "eslint . && publint",
"release": "changeset version",
"changeset:empty": "changeset add --empty",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"README.md",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@swc/core": "^1.6.13",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.56.10",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.11",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"publint": "^0.2.9",
"schema-dts": "^1.1.2",
"tslib": "^2.6.3",
"tsup": "^8.1.2",
"typescript": "^5.5.3",
"typescript-eslint": "8.0.0-alpha.44",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"dependencies": {
"schema-dts": "^1.1.2",
"zod": "^3.23.8"
}
}