Skip to content

Commit

Permalink
chore: remove useless files
Browse files Browse the repository at this point in the history
  • Loading branch information
HaydenOrz committed Aug 9, 2024
1 parent b6f61a9 commit 28afa37
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 131 deletions.
3 changes: 0 additions & 3 deletions .czrc

This file was deleted.

51 changes: 0 additions & 51 deletions .gitlab-ci.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .lintstagedrc.js

This file was deleted.

16 changes: 0 additions & 16 deletions .npmignore

This file was deleted.

124 changes: 67 additions & 57 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,69 @@
{
"name": "dt-react-monaco-editor",
"version": "1.0.4",
"description": "Monaco editor for React.",
"authors": "DTStack Corporation",
"keywords": [
"react",
"monaco",
"editor"
],
"repository": {
"type": "git",
"url": "https://github.com/DTStack/dt-react-monaco-editor.git"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"build": "rm -rf lib && tsc",
"watch": "rm -rf lib && tsc --watch",
"release": "npm run build && node ./scripts/release.js",
"check-types": "tsc --noEmit --skipLibCheck",
"lint": "prettier --check './src/**/*.{js,jsx,tsx,ts,less}'",
"lint-fix": "prettier --write './src/**/*.{js,jsx,tsx,ts,less}'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/cz-commitlint": "^17.5.0",
"@types/react": "18.x",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"inquirer": "^8.2.2",
"lint-staged": "^10.0.7",
"monaco-editor": "0.31.1",
"prettier": "^2.2.0",
"react": "18.x",
"standard-version": "^7.0.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"monaco-editor": "^0.31.0",
"react": ">=16.13.1"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
"name": "dt-react-monaco-editor",
"version": "1.0.4",
"description": "Monaco editor for React.",
"authors": "DTStack Corporation",
"keywords": [
"react",
"monaco",
"editor"
],
"repository": {
"type": "git",
"url": "https://github.com/DTStack/dt-react-monaco-editor.git"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"build": "rm -rf lib && tsc",
"watch": "rm -rf lib && tsc --watch",
"release": "npm run build && node ./scripts/release.js",
"check-types": "tsc --noEmit --skipLibCheck",
"lint": "prettier --check './src/**/*.{js,jsx,tsx,ts,less}'",
"lint-fix": "prettier --write './src/**/*.{js,jsx,tsx,ts,less}'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/cz-commitlint": "^17.5.0",
"@types/react": "18.x",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"inquirer": "^8.2.2",
"lint-staged": "^10.0.7",
"monaco-editor": "0.31.1",
"prettier": "^2.2.0",
"react": "18.x",
"standard-version": "^7.0.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"monaco-editor": "^0.31.0",
"react": ">=16.13.1"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
}
}

0 comments on commit 28afa37

Please sign in to comment.