-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 991 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 991 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
39
40
41
42
43
44
45
46
47
{
"name": "physical-link",
"version": "1.0.7",
"description": "A tool to develop npm packages. What npm link should be.",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"bin": {
"physical-link": "./src/cli.js"
},
"files": [
"src",
"types"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepack": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"npm",
"link",
"workflow",
"deps",
"dependency"
],
"author": "everdimension <everdimension@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"ansi-escapes": "^6.2.0",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"cosmiconfig": "^8.2.0",
"fs-extra": "^11.1.1",
"ignore": "^5.2.4"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/everdimension/physical-link.git"
}
}