-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "rollup-plugin-typescript-paths",
"version": "1.5.0",
"description": "Rollup plugin to automatically resolve TypeScript path aliases.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npm run prepare && node test",
"preversion": "npm test",
"prepare": "rm -rf dist && tsc"
},
"author": "Simon Haenisch (https://github.com/simonhaenisch)",
"repository": "simonhaenisch/rollup-plugin-typescript-paths",
"keywords": [
"rollup-plugin",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/simonhaenisch/rollup-plugin-typescript-paths/issues"
},
"homepage": "https://github.com/simonhaenisch/rollup-plugin-typescript-paths#readme",
"devDependencies": {
"@types/node": "18.16.18",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"rollup": "2.79.1",
"typescript": "5.1.3"
},
"peerDependencies": {
"typescript": ">=3.4"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"bracketSpacing": true,
"overrides": [
{
"files": [
"package.json",
"*.md"
],
"options": {
"useTabs": false
}
}
]
}
}