-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "vite-plugin-custom-tsconfig",
"version": "1.0.4",
"repository": "github:edielemoine/vite-plugin-custom-tsconfig",
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"main": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"prepare": "is-ci || husky install",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.ts": "prettier --write",
"package.json": "npx -q sort-package-json"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^16.18.11",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}