You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1020 B
42 lines
1020 B
|
2 years ago
|
{
|
||
|
|
"name": "scule",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "String case utils",
|
||
|
|
"repository": "unjs/scule",
|
||
|
|
"license": "MIT",
|
||
|
|
"sideEffects": false,
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"require": "./dist/index.cjs",
|
||
|
|
"import": "./dist/index.mjs",
|
||
|
|
"types": "./dist/index.d.ts"
|
||
|
|
},
|
||
|
|
"./*": "./*"
|
||
|
|
},
|
||
|
|
"main": "./dist/index.cjs",
|
||
|
|
"module": "./dist/index.mjs",
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"files": [
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"build": "unbuild",
|
||
|
|
"dev": "vitest",
|
||
|
|
"lint": "eslint --ext .ts .",
|
||
|
|
"prepublishOnly": "pnpm build",
|
||
|
|
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
|
||
|
|
"test": "pnpm lint && vitest run --coverage"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^18.11.9",
|
||
|
|
"@vitest/coverage-c8": "^0.25.2",
|
||
|
|
"eslint": "^8.27.0",
|
||
|
|
"eslint-config-unjs": "^0.0.2",
|
||
|
|
"standard-version": "^9.5.0",
|
||
|
|
"typescript": "^4.8.4",
|
||
|
|
"unbuild": "^0.9.4",
|
||
|
|
"vitest": "^0.25.2"
|
||
|
|
},
|
||
|
|
"packageManager": "pnpm@7.16.0"
|
||
|
|
}
|