-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.63 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.63 KB
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
{
"name": "@cytoid/schema",
"type": "module",
"version": "0.0.4",
"packageManager": "pnpm@10.9.0",
"description": "",
"license": "MIT",
"repository": "Cytoid/schema",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./types": {
"types": "./dist/types/index.d.mts",
"import": "./dist/types/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "unbuild",
"play:prepare": "unbuild --stub",
"play": "pnpm -C playground play",
"dev": "vitest dev",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release --push && pnpm publish",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"peerDependencies": {
"zod": "^3.25.56"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "^3.1.2",
"changelogen": "^0.6.1",
"eslint": "^9.25.1",
"jiti": "2.4.2",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vitest": "^3.1.2",
"zod": "^3.25.56"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"ignoredBuiltDependencies": [
"unrs-resolver"
]
}
}