-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.79 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
75
76
77
78
79
{
"name": "query-registry",
"version": "4.0.1",
"description": "Query the npm registry for packuments, manifests, packages and download counts",
"license": "MIT",
"author": {
"name": "Edoardo Scibona",
"url": "https://github.com/velut"
},
"repository": {
"type": "git",
"url": "https://github.com/velut/query-registry.git"
},
"bugs": {
"url": "https://github.com/velut/query-registry/issues"
},
"keywords": [
"query",
"registry",
"npm",
"client",
"api",
"packument",
"package",
"downloads",
"search",
"manifest",
"typescript"
],
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsc --noEmit && tsup",
"attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
"test": "vitest",
"test:update-data": "bun run scripts/update-test-data.ts",
"test:ci": "vitest run --coverage --bail 1",
"lint": "prettier --check .",
"format": "prettier --write .",
"pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw",
"release": "np --no-cleanup"
},
"dependencies": {
"query-string": "^9.1.1",
"quick-lru": "^7.0.0",
"url-join": "^5.0.0",
"validate-npm-package-name": "^6.0.0",
"zod": "^3.24.2",
"zod-package-json": "^1.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@types/bun": "^1.2.8",
"@types/node": "^22.13.14",
"@types/validate-npm-package-name": "^4.0.2",
"@vitest/coverage-v8": "^3.1.1",
"fflate": "^0.8.2",
"np": "^10.2.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
}
}