-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 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
39
40
{
"name": "hiberbee",
"version": "1.0.0",
"license": "Apache-2.0",
"homepage": "https://github.com/hiberbee/themes#readme",
"workspaces": [
"packages/*"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/hiberbee/themes.git"
},
"author": {
"url": "https://hiberbee.com",
"name": "Hiberbee",
"email": "[email protected]"
},
"prettier": "@bn-digital/prettier-config",
"eslintConfig": {
"extends": "@bn-digital/eslint-config"
},
"devDependencies": {
"@bn-digital/eslint-config": "^2.5.0",
"@bn-digital/prettier-config": "^2.4.1",
"@bn-digital/typescript-config": "^1.4.0",
"@types/node": "^20.6.5",
"typescript": "^5.2.2"
},
"scripts": {
"vscode:start": "code",
"vscode:build": "vsce package",
"vscode:publish": "vsce publish --no-git-tag-version",
"eslint": "node_modules/.bin/eslint",
"prettier": "node_modules/.bin/prettier",
"lint": "yarn eslint packages/*/src/**/*.{ts,tsx} && yarn prettier --check packages/*/src",
"lint:fix": "yarn eslint --fix packages/*/src/**/*.tsx && yarn prettier --write packages/*/src"
},
"packageManager": "[email protected]"
}