-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.73 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.73 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
99
100
{
"name": "lnpkg",
"version": "0.0.1-alpha.19",
"description": "Link local Node.js packages.",
"keywords": [
"link",
"local",
"packages",
"modules",
"dependencies",
"cli",
"tool",
"npm-link",
"multi-package",
"package.json"
],
"homepage": "https://github.com/Arnesfield/lnpkg#readme",
"bugs": {
"url": "https://github.com/Arnesfield/lnpkg/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arnesfield/lnpkg.git"
},
"license": "MIT",
"author": "Jefferson Rylee <rylee.jeff385@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
"./package.json": "./package.json"
},
"bin": {
"lnpkg": "bin/cli.js"
},
"files": [
"lib"
],
"scripts": {
"all": "concurrently -r --kill-others-on-fail",
"build": "npm run all -- npm:bundle npm:check",
"prebundle": "rimraf lib",
"bundle": "rollup -c rollup.config.ts --configPlugin \"esbuild={target:'esnext'}\" --configImportAttributesKey with",
"check": "npm run all -- \"npm:lint -- --max-warnings 0\" tsc",
"format": "npm run lint -- --fix && prettier -cw .",
"lint": "eslint .",
"start": "npm run watch -- --environment NODE_ENV:development",
"test": "echo WARNING: SKIPPING TESTS && exit 0",
"test:_": "npm run all -- mocha npm:check",
"test:watch": "mocha -w",
"watch": "npm run bundle -- -w --no-watch.clearScreen"
},
"dependencies": {
"@npmcli/arborist": "^9.1.2",
"argstree": "^2.0.0-alpha.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"glob": "^11.0.3",
"is-path-inside": "^4.0.0",
"lodash.throttle": "^4.1.1",
"minimatch": "^10.0.3",
"npm-packlist": "^10.0.0",
"path-collapse": "^1.0.1",
"pretty-ms": "^9.2.0",
"string-width": "^7.2.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@isaacs/cliui": "^8.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^24.0.1",
"@types/npm-packlist": "^7.0.3",
"@types/npmcli__arborist": "^6.3.0",
"@types/npmcli__package-json": "^4.0.4",
"concurrently": "^9.1.2",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.43.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-node-externals": "^8.0.0",
"rollup-plugin-output-size": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"engines": {
"node": ">=16.7.0",
"npm": ">=8.8.0"
},
"overrides": {
"@rollup/plugin-eslint": {
"eslint": "$eslint"
}
}
}