-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "platformdirs",
"version": "4.3.8-rc3",
"description": "📂 Unified interface to get platform-specific directories",
"keywords": [
"nodejs",
"port",
"xdg",
"xdg-basedir",
"bun",
"deno",
"appdirs",
"known-folders",
"platformdirs"
],
"homepage": "https://tsdocs.dev/docs/platformdirs",
"repository": {
"type": "git",
"url": "git+https://github.com/jcbhmr/platformdirs.js.git"
},
"license": "MIT",
"author": "Jacob Hummer <[email protected]> (https://jcbhmr.me)",
"type": "module",
"exports": {
".": "./dist/index.js",
"./android": "./dist/android.js",
"./api": "./dist/api.js",
"./macos": "./dist/macos.js",
"./unix": "./dist/unix.js",
"./version": "./dist/version.js"
},
"types": "dist/index.d.ts",
"bin": {
"platformdirs": "dist/main.js"
},
"files": ["dist"],
"scripts": {
"build": "tsc --noCheck",
"format": "biome format --write .",
"lint": "biome check --write . && tsc --noEmit",
"prepack": "npm run build",
"platformdirs": "node --experimental-transform-types src/main.ts",
"test": "node --experimental-transform-types --test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.9.0",
"@types/which": "^3.0.4",
"execa": "^9.5.1",
"typescript": "^5.6.3",
"which": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}