-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 950 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 950 Bytes
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
{
"name": "@lawg.dev/snowflake",
"type": "module",
"version": "1.0.3",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+github.com/lawgdev/snowflake.git"
},
"bugs": {
"url": "https://github.com/lawgdev/snowflake/issues/new"
},
"author": "Cody Miller <cody@lawg.dev>",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json"
],
"keywords": [
"snowflake",
"nodejs-snowflake",
"twitter snowflake",
"twitter",
"snowflake id"
],
"scripts": {
"build": "bun bunup --minify",
"test": "bun test",
"benchmark": "bun bench/index.bench.ts",
"benchmark-throughput": "bun bench/throughput.bench.ts",
"publish": "bun run build && bun publish"
},
"devDependencies": {
"@types/bun": "latest",
"bunup": "^0.15.14",
"mitata": "^1.0.34",
"typescript": "^5"
}
}