-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "~blastra-dev",
"version": "0.0.12",
"type": "module",
"scripts": {
"dev:go": "cd pkg && BLASTRA_CPU_LIMIT=4 BLASTRA_RATE_LIMIT=0 BLASTRA_LOG_LEVEL=debug BLASTRA_CWD=../packages/create/template go run main.go",
"lint": "eslint . --fix",
"prepare": "husky install",
"release": "commit-and-tag-version",
"publish-packages": "cd packages/core && npm publish --access public && cd ../create && npm publish --access public",
"delivery": "yarn release && yarn publish-packages"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devthefuture-org/blastra.git"
},
"keywords": [
"blastra",
"create-blastra",
"template"
],
"author": "DevTheFuture",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2"
}
}