This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "npm-packages-data-cache",
"version": "0.2.0",
"description": "Fetches the latest data from npm registry",
"keywords": [
"cli",
"npm",
"version",
"versions"
],
"license": "ISC",
"author": {
"email": "[email protected]",
"name": "Timur Moziev",
"url": "https://timurrin.github.io/"
},
"files": [
"bin",
"dist"
],
"type": "module",
"main": "dist/index.js",
"bin": {},
"repository": {
"type": "git",
"url": "git+https://github.com/cinnabar-forge/npm-packages-data-cache"
},
"scripts": {
"build": "node esbuild.js",
"build:bundle": "node esbuild.js full",
"build:dev": "tsc",
"build:sea": "node sea.build.js",
"dev": "node esbuild.js watch",
"fix": "prettier . --write && eslint --fix .",
"format": "prettier . --write",
"lint": "eslint --fix .",
"prepack": "npm run build",
"test": "prettier . -c && eslint --max-warnings 0 . && tsc && mocha './build/dev/test'"
},
"dependencies": {
"clivo": "0.5.2",
"dotenv": "16.4.5",
"migratta": "0.4.1",
"node-sqlite3-wasm": "0.8.22",
"package-name-regex": "4.0.0"
},
"devDependencies": {
"@cinnabar-forge/eslint-plugin": "0.7.2",
"@cinnabar-forge/meta": "0.3.1",
"@types/chai": "5.0.0",
"@types/mocha": "10.0.8",
"@types/node": "22.7.1",
"chai": "5.1.1",
"esbuild": "0.24.0",
"mocha": "10.7.3",
"pre-commit": "1.2.2",
"typescript": "5.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"pre-commit": [
"test"
]
}