-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "explorer-opener",
"version": "1.0.1",
"description": "📁 Open file explorer with Node.js",
"keywords": [
"open",
"file",
"explorer",
"finder",
"nautilus",
"file-explorer"
],
"private": false,
"author": "Yurii Brusentsov <[email protected]>",
"license": "MIT",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"lint": "pnpm run lint:ts && pnpm run format",
"lint:ts": "eslint ./src --ext .ts --config .eslintrc --fix",
"format": "prettier --write .",
"demo": "ts-node demo/demo.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@swc/core": "^1.3.70",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-v8": "^0.33.0",
"chalk": "^4.1.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.0",
"semantic-release": "^21.0.7",
"terser": "^5.19.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"repository": {
"type": "git",
"url": "https://github.com/goveo/explorer-opener.git"
},
"bugs": {
"url": "https://github.com/goveo/explorer-opener/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/goveo/explorer-opener#readme"
}