Skip to content

Commit

Permalink
chore: release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackie1210 committed Oct 13, 2023
1 parent cb93b38 commit 7541aa4
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,50 @@
{
"name": "css-gradient-parser",
"version": "0.0.1",
"version": "0.1.0",
"description": "a css gradient parser",
"packageManager": "[email protected]",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": ["dist"],
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"author": "Lynnnnnnxx<[email protected]>",
"scripts": {
"prepare": "simple-git-hooks",
"build": "tsup",
"test": "vitest",
"lint": "eslint . --ext .js,.jsx,.ts --quiet --cache",
"lint:fix": "pnpm lint --fix",
"release": "bumpp --commit --push --tag && pnpm publish"
"release": "bumpp --commit"
},
"exports": {
".": {
"import": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --cache"
]
"eslint --fix --cache"
]
},
"devDependencies": {
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "^9.2.0",
"eslint": "^8.50.0",
"lint-staged": "^14.0.1",
"simple-git-hooks": "^2.9.0",
Expand Down

0 comments on commit 7541aa4

Please sign in to comment.