generated from VitorLuizC/typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "aliases-from-tsconfig",
"version": "0.2.0",
"description": "Reads a jsconfig/tsconfig.json baseUrl and paths and provides a methods to replace its aliases in your files paths.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./dist/index.js"
]
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/mock-fs": "^4.13.4",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.2.5",
"rollup": "^4.16.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.5"
},
"scripts": {
"doc": "typedoc src/index.ts --plugin typedoc-plugin-markdown",
"test": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.mjs",
"prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/aliases-from-tsconfig.git"
},
"keywords": [],
"author": {
"name": "Vitor Luiz Cavalcanti"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/aliases-from-tsconfig/issues"
},
"homepage": "https://github.com/VitorLuizC/aliases-from-tsconfig#readme",
"dependencies": {
"@types/node": "^20.12.7"
},
"engines": {
"node": ">= 16"
}
}