-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "@elonehoo/only-random",
"version": "0.0.9",
"description": "Generate random numbers that are consecutively unique.",
"author": "Elone Hoo <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/elonehoo/only-random#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elonehoo/only-random"
},
"bugs": "https://github.com/elonehoo/only-random/issues",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"prepublishOnly": "npm run build",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "3.13.0",
"@elonehoo/rimraf": "0.0.1",
"@types/node": "22.10.5",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^2.1.8",
"bumpp": "9.10.0",
"eslint": "9.18.0",
"pnpm": "9.15.3",
"typescript": "5.7.3",
"unbuild": "^3.2.0",
"vite": "^6.0.7",
"vitest": "2.1.8"
}
}