This commit is contained in:
parent
f106226e70
commit
f72251d0ec
6 changed files with 1507 additions and 3 deletions
15
package.json
15
package.json
|
|
@ -5,7 +5,12 @@
|
|||
"scripts": {
|
||||
"build": "npm run clean && tsc && npm run create-package",
|
||||
"create-package": "node ./scripts/create-package",
|
||||
"clean": "rimraf dist"
|
||||
"clean": "rimraf dist",
|
||||
"prettier:check": "prettier --check \"./lib/src/**/*.*\"",
|
||||
"prettier:fix": "prettier --write \"./lib/src/**/*.*\"",
|
||||
"lint": "eslint lib/src/**/*.ts",
|
||||
"prepare": "husky",
|
||||
"test": "echo test"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
|
|
@ -14,6 +19,14 @@
|
|||
"@gxc-solutions/math": "^0.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.3.4",
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@types/node": "^25.3.3",
|
||||
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
||||
"eslint": "^10.0.2",
|
||||
"globals": "^17.4.0",
|
||||
"husky": "^9.1.7",
|
||||
"prettier": "^3.8.1",
|
||||
"rimraf": "^6.0.1",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue