-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@gatsbylabs/short-uuid-subdomain",
"author": "Enoch Chau <[email protected]>",
"files": [
"dist/"
],
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:gatsbylabs/short-uuid-subdomain.git",
"homepage": "https://github.com/gatsbylabs/short-uuid-subdomain#readme",
"bugs": {
"url": "https://github.com/gatsbylabs/short-uuid-subdomain/issues"
},
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"esbuild": "^0.14.47",
"esbuild-jest": "^0.5.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"scripts": {
"prepare": "husky install",
"typecheck": "tsc",
"lint": "eslint src/ --fix",
"fmt": "prettier --write .",
"test": "jest",
"build": "tsup src/* --dts",
"prepublish": "yarn lint && yarn typecheck && yarn test && yarn build"
},
"lint-staged": {
"*.{js,ts,md,json,yaml,yml}": "prettier --write",
"./src/**/*.{js,ts}": "eslint --fix"
},
"dependencies": {
"base32-decode": "^1.0.0",
"base32-encode": "~1.0.0",
"short-uuid": "^4.2.0"
},
"keywords": [
"uuid",
"short-uuid",
"subdomain",
"RFC1123"
]
}