-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 975 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
41
42
43
44
45
{
"name": "kluid",
"version": "1.1.0",
"description": "Copy new unique identifier to clipboard",
"main": "./dist/src/index.js",
"bin": {
"kluid": "bin/kluid.js"
},
"scripts": {
"build": "tsc",
"start:dev": "tsc && node ./bin/kluid.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkaung/kluid.git"
},
"keywords": [
"uuid",
"guid",
"ulid",
"ksuid",
"clipboard",
"copy"
],
"author": "Kevin Aung <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkaung/kluid/issues"
},
"homepage": "https://github.com/kkaung/kluid#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^8.3.0",
"copy-paste": "^1.1.4",
"ksuid": "^3.0.0",
"ulid": "^2.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/node": "^17.0.11",
"@types/uuid": "^8.3.4",
"typescript": "^4.5.5"
}
}