-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "vm-vivino",
"version": "0.0.0-development",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "yarn rollup --config rollup.config.ts --configPlugin typescript --watch",
"prod": "yarn rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint *.js src --ext .ts --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"release": "semantic-release --config ./release.config.js"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/chrome": "^0.0.206",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"rollup": "^3.8.0",
"rollup-plugin-copy": "^3.4.0",
"semantic-release": "^18.0.1",
"type-fest": "^3.4.0",
"typescript": "^4.9.4"
},
"commitlint": {
"parserPreset": "conventional-changelog-conventionalcommits",
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]"
}