-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.44 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.44 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@maastrich/hashup",
"version": "0.9.0",
"private": false,
"description": "Resolves every import and produces a fully deterministic hash for any entry file.",
"keywords": [
"bundler",
"content-hash",
"dependency",
"deterministic",
"file-hash",
"hash",
"import",
"module",
"resolver",
"typescript"
],
"homepage": "https://github.com/maastrich/hashup#readme",
"bugs": {
"url": "https://github.com/maastrich/hashup/issues"
},
"license": "MIT",
"author": {
"name": "Mathis Pinsault",
"email": "[email protected]",
"url": "https://github.com/maastrich"
},
"repository": {
"type": "git",
"url": "https://github.com/maastrich/hashup.git"
},
"bin": {
"hashup": "./dist/cli.mjs"
},
"files": [
"dist",
"schema.json",
"README.md",
"LICENSE"
],
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./config": {
"types": "./dist/config.d.mts",
"import": "./dist/config.mjs"
},
"./schema.json": "./schema.json"
},
"scripts": {
"build": "vp pack",
"test": "vp test",
"type-check": "vp lint --type-aware",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"format": "vp fmt --check",
"format:fix": "vp fmt",
"check": "vp check",
"check:fix": "vp check --fix",
"docs:dev": "vp exec vitepress dev docs",
"docs:build": "vp pack && pnpm schema:generate && vp exec vitepress build docs",
"docs:preview": "vp exec vitepress preview docs",
"schema:generate": "node scripts/generate-schema.mjs",
"changeset": "changeset",
"version": "changeset version",
"release": "vp pack && pnpm schema:generate && changeset publish",
"prepack": "vp pack && pnpm schema:generate",
"prepublishOnly": "vp check && vp test",
"prepare": "vp config"
},
"dependencies": {
"enhanced-resolve": "^5.17.1",
"es-module-lexer": "^1.6.0",
"esbuild": "^0.24.2",
"tinyglobby": "^0.2.16"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^20.19.22",
"type-testing": "^0.2.0",
"typescript": "^5.9.3",
"vite-plus": "catalog:",
"vitepress": "^1.6.4",
"zod": "^4.3.6"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=10"
},
"packageManager": "[email protected]"
}