-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 910 Bytes
/
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
{
"name": "pika-id",
"version": "1.1.3",
"description": "The pragmatic ID system",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"package.json",
"dist"
],
"scripts": {
"build": "yarn tsup src/index.ts --dts --format cjs,esm",
"release": "yarn release && yarn publish",
"bench": "yarn build && node ./bench/gen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hopinc/pika.git"
},
"keywords": [
"id",
"snowflake"
],
"packageManager": "[email protected]",
"author": "Phineas <[email protected]> (https://phineas.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/hopinc/pika/issues"
},
"homepage": "https://github.com/hopinc/pika#readme",
"devDependencies": {
"@types/node": "^18.8.3",
"benchmark": "^2.1.4",
"prettier": "^2.7.1",
"tsup": "^6.2.3",
"tsx": "^3.10.1",
"typescript": "^4.8.4"
}
}