-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 1.78 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
{
"name": "vite-plugin-env-compatible",
"version": "2.0.1",
"description": "Environment Variables Compatible",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": "indexxuan@gmail.com",
"scripts": {
"build": "tsup",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"homepage": "https://github.com/IndexXuan/vite-plugin-env-compatible",
"repository": {
"type": "git",
"url": "git@github.com:IndexXuan/vite-plugin-env-compatible.git"
},
"keywords": [
"vite-plugin",
"dot-env"
],
"devDependencies": {
"@commitlint/cli": "7.2.0",
"@commitlint/config-conventional": "7.1.2",
"@types/node": "14.14.25",
"commitizen": "2.10.1",
"cz-customizable": "5.2.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"tsup": "^8.0.1",
"typescript": "4.1.3",
"vite": "2.5.1",
"yorkie": "2.0.0"
},
"dependencies": {
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-configrc.js"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"**/**.{ts,js,json}": [
"prettier --write"
]
}
}