forked from gustavoguichard/string-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "string-ts",
"version": "2.0.0",
"description": "Strongly-typed string functions.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "Gustavo Guichard <@gugaguichard>",
"license": "MIT",
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts --treeshake",
"dev": "tsup ./src/index.ts --format esm,cjs --watch --dts",
"lint": "eslint *.ts*",
"tsc": "tsc --noEmit",
"tsc:dist": "tsc --project tsconfig.dist.json",
"test": "vitest run"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@vitest/coverage-v8": "^1.0.2",
"eslint": "latest",
"prettier": "latest",
"tsup": "latest",
"typescript": "^5.1.6",
"vitest": "latest"
},
"files": [
"README.md",
"./dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gustavoguichard/string-ts.git"
},
"bugs": {
"url": "https://github.com/gustavoguichard/string-ts/issues"
},
"sideEfects": false
}