-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "coin-format",
"version": "0.0.2",
"description": "A tiny zero-dependency library to format coins, primarily for crypto, with broader applications as well.",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"author": "Alex Saft <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fend25/coin-format/issues"
},
"homepage": "https://github.com/fend25/coin-format",
"private": false,
"keywords": [
"cryptocurrency",
"currency-format",
"coin",
"ethereum",
"bitcoin",
"crypto-formatting",
"wei",
"satoshis",
"blockchain",
"decimal-conversion",
"precision-formatting",
"currency-utils",
"crypto-utils"
],
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"build": "npm run clean && tsup --config configs/tsup.config.ts && npm run copy_files",
"copy_files": "cpy ./package.json ./README.md ./dist",
"patch": "npm run release -- -i patch --ci",
"minor": "npm run release -- -i minor --ci",
"release": "dotenv -e ./configs/.release.env -- release-it --config ./configs/.release-it.js --github.release",
"testrun": "vitest run",
"test": "vitest"
},
"devDependencies": {
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.4",
"dotenv-cli": "^7.3.0",
"mkdirp": "^3.0.1",
"release-it": "^17.0.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
},
"publishConfig": {
"access": "public"
}
}