-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "memdisk",
"version": "1.3.0",
"description": "A library and a CLI to create RAM disk on macOS and Linux.",
"homepage": "https://github.com/SukkaW/memdisk",
"repository": {
"type": "git",
"url": "git+https://github.com/SukkaW/memdisk.git"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint --format=sukka .",
"build": "bunchee -m --target es2018 --dts-bundle --no-sourcemap",
"release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
},
"keywords": [
"ramdisk",
"memdisk"
],
"author": "SukkaW <https://skk.moe>",
"license": "MIT",
"dependencies": {
"foxts": "^5.4.0",
"gensync": "1.0.0-beta.2",
"picocolors": "^1.1.1",
"tinyexec": "^1.1.1"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@eslint-sukka/node": "^8.9.2",
"@types/gensync": "^1.0.4",
"@types/node": "^20.19.39",
"@types/which": "^3.0.4",
"bumpp": "^10.4.1",
"bunchee": "^6.10.0",
"commander": "^12.1.0",
"eslint": "^10.2.0",
"eslint-config-sukka": "^8.9.2",
"eslint-formatter-sukka": "^8.9.2",
"typescript": "^6.0.2",
"which": "^5.0.0"
},
"packageManager": "pnpm@10.33.0"
}