-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 919 Bytes
/
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
{
"name": "dirs-next",
"version": "0.0.1-canary.1",
"description": "A tiny library with a minimal API that provides the platform-specific, user-accessible locations for retrieving and storing configuration",
"keywords": [
"dirs",
"dirs-next",
"config"
],
"repository": "https://github.com/tknickman/dirs-next",
"author": "Thomas Knickman",
"licenses": [
{
"license": "MIT"
}
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"test": "jest",
"release": "pnpm format && pnpm test && pnpm build && pnpm publish"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}