-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "seedpods",
"description": "",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bin": {
"seedpods": "./lib/node/cli.js"
},
"bugs": "https://github.com/escapace/seedpods/issues",
"dependencies": {
"@escapace/canonicalize": "^0.1.2",
"fast-equals": "^5.2.2",
"zod": "^3.25.28"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@escapace/pnpm-pack": "0.6.0",
"@escapace/typelevel": "2.0.3",
"@ls-lint/ls-lint": "2.3.0",
"@types/lodash-es": "4.17.12",
"@types/node": "24.11.0",
"@vitest/coverage-v8": "3.1.4",
"eslint": "9.31.0",
"eslint-config-escapace": "5.9.2",
"esroll": "0.4.5",
"knip": "5.58.0",
"lefthook": "1.11.13",
"lodash-es": "4.17.23",
"prettier": "3.5.3",
"prettier-config-escapace": "1.2.2",
"secure-json-parse": "4.0.0",
"syncpack": "13.0.4",
"tsx": "4.19.4",
"typescript": "5.9.3",
"vitest": "3.1.4"
},
"engines": {
"node": ">=22.15.0",
"pnpm": ">=10.10.0"
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/node/index.js"
}
},
"files": [
"lib/node",
"lib/types"
],
"homepage": "https://github.com/escapace/seedpods#readme",
"license": "MPL-2.0",
"module": "./lib/node/index.js",
"peerDependencies": {
"@escapace/typelevel": ">=2.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/seedpods",
"scripts": {
"build": "tsx scripts/build.ts",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier -uw .",
"lint": "ls-lint --config .ls-lint.yaml && knip --no-config-hints && eslint",
"ls-lint": "ls-lint --config .ls-lint.yaml",
"pack": "pnpm-pack package --pack-destination lib",
"prepare": "lefthook install",
"syncpack": "syncpack fix-mismatches && syncpack set-semver-ranges && syncpack format",
"test": "vitest --no-watch --coverage",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"types": "./lib/types/index.d.ts"
}