-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "@luco-inc/pnpm-license-exporter",
"version": "3.2.0",
"description": "Dependencies license exporter for projects using pnpm.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsup --watch --onSuccess \"node ./dist/bin/pnpm-license-exporter.cjs\"",
"build": "tsup",
"prettier": "prettier --write --check src",
"eslint": "eslint -c .eslintrc.cjs --max-warnings=0 --fix --ext .ts src",
"test": "vitest run --config vitest.config.ts src",
"release": "np"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"bin": {
"pnpm-license-exporter": "./dist/bin/pnpm-license-exporter.cjs"
},
"devDependencies": {
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@vitest/coverage-v8": "1.5.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vitest": "0.5.2",
"np": "10.0.3",
"prettier": "3.2.5",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.5.0"
},
"repository": "https://github.com/luco-inc/pnpm-license-exporter",
"bugs": {
"url": "https://github.com/luco-inc/pnpm-license-exporter/issues"
},
"homepage": "https://github.com/luco-inc/pnpm-license-exporter#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@8.15.7+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019"
}