-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "casex",
"type": "module",
"version": "4.0.2",
"description": "All in one, self expressive function for string case styles",
"main": "dist/casex.js",
"types": "dist/casex.d.ts",
"repository": "https://github.com/pedsmoreira/casex",
"author": "Pedro Moreira <[email protected]>",
"license": "MIT",
"keywords": [
"casex",
"case",
"convert",
"string",
"text",
"string styles",
"case styles",
"case style pattern",
"separator"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup --entry.casex src/casex.ts --dts --format esm --minify",
"build:watch": "yarn build --watch",
"typecheck": "tsc --noEmit src/casex.ts",
"format": "prettier ./src/**/* --write; prettier ./*.md --write",
"test": "vitest",
"postversion": "git push && git push --tags",
"ci:test": "yarn build && yarn test",
"preversion": "yarn build && yarn test",
"version": "yarn build && git add package.json"
},
"devDependencies": {
"prettier": "^3.2.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.4"
}
}