-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.41 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
{
"name": "symlink-dir",
"version": "6.0.3",
"description": "Cross-platform directory symlinking",
"main": "dist/index.js",
"files": [
"dist/",
"!*.map"
],
"typings": "dist/index.d.ts",
"bin": "dist/cli.js",
"keywords": [
"symlink",
"symlinking",
"junction",
"directory",
"dir",
"folder"
],
"scripts": {
"pretest": "rimraf node_modules/src",
"test": "ts-node test/sync.ts && ts-node test/async.ts",
"premd": "rimraf node_modules/src && npm run tsc",
"tsc": "rimraf dist && tsc",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/symlink-dir.git"
},
"author": {
"name": "Zoltan Kochan",
"email": "[email protected]",
"url": "https://www.kochan.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/symlink-dir/issues"
},
"homepage": "https://github.com/pnpm/symlink-dir#readme",
"devDependencies": {
"@types/node": "^20.14.10",
"@types/tape": "^5.6.4",
"rimraf": "^3.0.2",
"tape": "^5.8.1",
"tempy": "^1.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"write-json-file": "^4.3.0"
},
"dependencies": {
"better-path-resolve": "^1.0.0",
"rename-overwrite": "^6.0.0"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
},
"engines": {
"node": ">=18.12"
}
}