-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "tsid-ts",
"author": "Yubin, Hsu",
"version": "0.0.9",
"main": "dist/index",
"keywords": [
"tsid",
"Time-Sorted Unique Identifiers",
"TypeScript"
],
"files": [
"dist"
],
"types": "dist/index.d.ts",
"description": "A TypeScript library for generating Time-Sorted Unique Identifiers (TSID).",
"license": "MIT",
"homepage": "https://github.com/yubinTW/tsid-ts",
"repository": {
"type": "git",
"url": "https://github.com/yubinTW/tsid-ts"
},
"bugs": {
"url": "https://github.com/yubinTW/tsid-ts/issues"
},
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"test:ui": "vitest --ui",
"fix-prettier": "prettier --write \"{src,test}/**/*.{ts,json}\"",
"check-lint": "eslint --color package.json \"{src,test}/**/*.ts\"",
"fix-lint": "eslint --fix \"{src,test}/**/*.ts\""
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.2.2",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-check": "^3.17.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vitest": "^1.2.2"
}
}