-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.4 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.4 KB
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
{
"name": "vite-plugin-tsconfig",
"version": "2.0.0",
"packageManager": "yarn@4.9.4",
"description": "Vite plugin that allows you to use alternate tsconfig files.",
"type": "module",
"main-note": "Though this is ESM only, the following main is to appease tsc and varieties of moduleResolution e.g. node vs nodenext, otherwise types aren't found. see https://github.com/rosskevin/ts-esm-workspaces/tree/bug-main-required-to-build#workaround ",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && tsup-node",
"typecheck": "echo 'tsc -b' && tsc -b",
"clean": "node ./scripts/clean.js",
"clean:yarn": "node ./scripts/clean-yarn.js",
"lint": "eslint . --cache --ext .js,.ts,.tsx",
"lint:fix": "eslint . --cache --ext .js,.ts,.tsx --fix",
"test": "echo 'no tests' && exit 0",
"release": "yarn auto shipit"
},
"keywords": [
"vite-plugin",
"tsconfig"
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": "https://github.com/alienfast/vite-plugin-tsconfig",
"homepage": "https://github.com/alienfast/vite-plugin-tsconfig",
"maintainers": [
{
"name": "Kevin Ross",
"email": "kevin.ross@alienfast.com"
}
],
"peerDependencies": {
"vite": ">=3.1.6"
},
"devDependencies": {
"@alienfast/eslint-config": "^6.0.7",
"@alienfast/tsconfig": "^1.0.4",
"@auto-it/all-contributors": "^11.3.0",
"@auto-it/first-time-contributor": "^11.3.0",
"@auto-it/released": "^11.3.0",
"@types/marked": "^6",
"@types/marked-terminal": "^6.1.1",
"auto": "^11.3.0",
"eslint": "^9.35.0",
"execa": "^9.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"auto": {
"canary": {
"target": "comment"
},
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
},
"dependencies": {
"@alienfast/find-monorepo-root": "^1.0.9",
"marked": "^16.3.0",
"marked-terminal": "^7.3.0"
}
}