-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.25 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@devlander/package-json-helper",
"version": "1.0.58",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "typings/index.d.ts",
"files": [
"dist",
"typings"
],
"author": {
"name": "Landon W. Johnson",
"url": "https://landonjohnson.dev"
},
"bin": {
"pkg-helper": "dist/cli/cjs/index.js"
},
"scripts": {
"check-packages": "npx check-package-dependencies",
"build:index": "node bootstrap.cjs",
"version:patch": "yarn version patch",
"test": "jest",
"link-packages": "node ./yarn-link-handler.js",
"test-cli": "cd ./example && yarn run test",
"format": "eslint './src/**/*.ts' --fix && prettier --write './src/**/*.ts'",
"typecheck": "tsc --project tsconfig.json --noEmit --emitDeclarationOnly false",
"buildESM": "tsc --project tsconfig.json",
"lint": "eslint ./src --ext .ts,.tsx --fix && yarn run format && yarn run typecheck",
"buildCJS": "rollup -c ./rollup.config.mjs && rollup -c ./rollup-cli.config.mjs",
"build": "yarn run build:index && npx rimraf ./dist && npx rimraf ./typings && yarn run format && yarn run typecheck && yarn run buildESM && yarn run buildCJS",
"prepare": "yarn run build",
"get-permissions-for-test": "node ./get-cli-permissions.js",
"allow-read-access": "chmod +x dist/cli/cjs/index.js",
"start-publish": "yarn run lint && yarn run build && yarn run allow-read-access && yarn run test && yarn version:patch && npm publish"
},
"packageManager": "[email protected]",
"dependencies": {
"@devlander/collect-exports-for-bundle": "^1.1.68",
"@devlander/utils": "^0.0.13",
"@types/jest": "^29.5.6",
"ansi-regex": "^6.0.1",
"ansi-styles": "^6.2.1",
"child_process": "^1.0.2",
"cli-progress": "^3.12.0",
"cliui": "^8.0.1",
"color-convert": "^2.0.1",
"color-name": "^2.0.0",
"emoji-regex": "^10.3.0",
"escalade": "^3.1.1",
"fs": "^0.0.2",
"get-caller-file": "^2.0.5",
"is-fullwidth-code-point": "^5.0.0",
"jest": "^29.7.0",
"js-doc": "^0.5.0",
"path": "^0.12.7",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"progress": "^2.0.3",
"readline": "^1.3.0",
"require-directory": "^2.1.1",
"string-width": "^7.0.0",
"strip-ansi": "^7.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"wrap-ansi": "^9.0.0",
"y18n": "^5.0.8",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@rollup/plugin-auto-install": "^3.0.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.3.94",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.8.0",
"add": "^2.0.6",
"delay-cli": "2.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prefer-arrow-functions": "^3.2.4",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest-extended": "^4.0.2",
"rollup": "^3.29.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-generate-git-version": "^1.0.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-swc-preserve-directives": "^0.5.0",
"ts-jest": "^29.1.1"
},
"eslintConfig": {
"extends": "./eslintrc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Devlander-Software/package-json-type-helper"
}
}