-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.23 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ordpool-parser",
"version": "2.0.3",
"description": "Zero-dependency TypeScript parser for Bitcoin digital artifacts: Inscriptions, Runes, BRC-20, SRC-20, CAT-21, Atomicals, and Labitbu. Works in Node.js and browsers.",
"repository": {
"type": "git",
"url": "git+https://github.com/ordpool-space/ordpool-parser.git"
},
"bugs": {
"url": "https://github.com/ordpool-space/ordpool-parser/issues"
},
"main": "dist-commonjs/index.js",
"module": "dist/index.js",
"scripts": {
"clean": "rimraf dist && rimraf dist-commonjs",
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build-commonjs.json",
"start": "npm run test",
"test": "npm run test:node && npm run test:browser",
"test:node": "npm run clean && jest --config jest.config.node.js",
"test:node:watch": "npm run clean && jest --config jest.config.node.js --watch ",
"test:browser": "npm run clean && jest --config jest.config.browser.js",
"test:browser:watch": "npm run clean && jest --config jest.config.browser.js --watch ",
"fetch-tx-testdata": "node fetch-tx-testdata.js",
"fetch-inscription-testdata": "node fetch-inscription-testdata.js",
"prepublishOnly": "npm run test && npm run clean && npm run build",
"create-link": "npm run build && cd dist && npm link",
"build:cat21": "esbuild src/cat21/cat21-bundle.ts --bundle --format=esm --target=es2020 --outfile=dist/cat21.js --minify && esbuild src/cat21/cat21-bundle.ts --bundle --format=iife --global-name=Cat21 --target=es2020 --outfile=dist/cat21.iife.js --minify"
},
"keywords": [
"bitcoin",
"ordinals",
"inscription",
"inscriptions",
"rune",
"runes",
"runestone",
"stamps",
"src-20",
"src20",
"cat-21",
"cat21",
"mempool",
"ordpool",
"blockchain"
],
"author": "HAUS HOPPE",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"axios": "^1.7.2",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mime-types": "^2.1.35",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"files": [
"dist",
"dist-commonjs",
"src",
"*.js",
"*.json"
]
}