-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 946 Bytes
/
package.json
File metadata and controls
38 lines (37 loc) · 946 Bytes
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
{
"name": "locreq",
"version": "2.1.0",
"description": "Require local modules without all that '../../../' BS",
"main": "lib/src/index.js",
"scripts": {
"build": "node ./esbuild.cjs",
"prepare": "rm -rf @types && npm run typecheck && npm run build-declarations && npm run build",
"build-declarations": "tsc --emitDeclarationOnly",
"typecheck": "tsc --noemit"
},
"prepare": "npm run build",
"type": "module",
"types": "./@types/index.d.ts",
"author": "Kuba Orlik (kontakt@jakub-orlik.pl)",
"license": "ISC",
"dependencies": {
"@types/node": "^14.14.16",
"esbuild": "0.14.10",
"tiny-glob": "0.2.9",
"ts-node": "^10.9.2",
"typescript": "5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sealcode/locreq.git"
},
"keywords": [
"local",
"require",
"path"
],
"bugs": {
"url": "https://github.com/sealcode/locreq/issues"
},
"homepage": "https://github.com/sealcode/locreq#readme"
}