-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "binary-id",
"version": "1.7.9",
"description": "Created a sistem for generation of token's and id's",
"files": [
"dist"
],
"main": "dist/b.commonjs.js",
"module": "dist/b.js",
"typings": "dist/b.d.ts",
"scripts": {
"dev": "tsx watch src/b.ts",
"index": "tsx watch src/random/index.ts",
"test": "tsx watch test/test.ts",
"js": "node --watch --trace-warnings test/test.js",
"build": "tsup src",
"start": "node dist/b.js"
},
"keywords": [
"id",
"token"
],
"author": "Danilo Silva",
"license": "MIT",
"publishConfig": {
"@kovarike:registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kovarike/binary-uuid.git"
},
"bugs": {
"url": "https://github.com/kovarike/binary-uuid/issues"
},
"homepage": "https://github.com/kovarike/binary-uuid#readme",
"devDependencies": {
"@types/node": "^20.12.11",
"tsup": "^8.0.2",
"tsx": "^4.10.2",
"typescript": "^5.4.5"
},
"dependencies": {
"binary-id": "^1.7.9"
}
}