-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "@okutils/uid",
"type": "module",
"version": "1.0.1",
"description": "A simple and efficient UID generator for JavaScript and TypeScript.",
"author": {
"email": "narukeu@outlook.com",
"name": "Luke Na",
"url": "https://narukeu.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/okutils/uid.git"
},
"bugs": {
"url": "https://github.com/okutils/uid/issues"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"bumpp": "^11.0.1",
"prettier": "^3.8.1",
"tsdown": "^0.21.3",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts"
}