-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@the-minimal/id",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"author": "Miroslav Vršecký <[email protected]>",
"description": "Minimal, secure and collision-resistant random IDs in TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/the-minimal/id.git",
"directory": "src"
},
"keywords": [
"uuid",
"guid",
"cuid",
"unique",
"id",
"ids",
"identifier",
"identifiers",
"javascript",
"typescript"
],
"homepage": "https://github.com/the-minimal/id",
"bugs": {
"url": "https://github.com/the-minimal/id/issues"
},
"scripts": {
"prepublishOnly": "bun run check && bun run build && bun run test",
"release": "release-it",
"build": "bun run build:tsup && bun run build:stats",
"build:tsup": "tsup",
"build:stats": "bun run scripts/stats.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"check": "bunx @biomejs/biome check --apply ./"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@types/bun": "latest",
"@vitest/coverage-v8": "1.6.0",
"release-it": "17.2.1",
"tsup": "8.0.2",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
},
"dependencies": {
"@the-minimal/fingerprint": "0.0.2"
},
"peerDependencies": {
"typescript": "5.4.5"
}
}