generated from wopjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 927 Bytes
/
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
{
"name": "@wopjs/string",
"version": "0.1.0",
"description": "Collection of common string utilities.",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepublish": "pnpm run build",
"lint": "eslint --ext .ts,.tsx . && prettier --check .",
"build": "tsup src/index.ts --clean --format esm --target esnext --dts"
},
"keywords": [
"string",
"uid"
],
"maintainers": [
{
"name": "CRIMX",
"email": "[email protected]"
},
{
"name": "hyrious",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
}
}