-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
56
57
58
59
60
{
"name": "xls-32d",
"version": "0.0.4-beta",
"description": "XRPLF Standards Proposal - Request URI Structure",
"main": "./dist/src/index.js",
"repository": "https://github.com/standardconnect/xls-32d.git",
"author": "interc0der <intercoder@whirled.io>",
"license": "MIT",
"keywords": [
"XRPLF",
"URI",
"Standard",
"typescript"
],
"exports": "./dist/src/index.js",
"bin": {
"xls-32d": "./dist/src/index.js"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"c": "rm -rf ./dist && tsc && tsc-alias",
"typecheck": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --report-unused-disable-directives",
"format": "prettier --write --plugin-search-dir=. **/*.{cjs,mjs,ts,tsx,md,json} --ignore-path ../.gitignore",
"format:check": "prettier --check --plugin-search-dir=. **/*.{cjs,mjs,ts,tsx,md,json} --ignore-path ../.gitignore",
"test": "yarn c && jest -all",
"test:cti": "yarn c && jest -i tests/cti.test.ts -t",
"test:encode": "yarn c && jest -i tests/encode.test.ts -t",
"test:decode": "yarn c && jest -i tests/decode.test.ts -t",
"release": "changeset version",
"pub:beta": "npm run c && npm publish --tag beta",
"pub:next": "npm run c && npm publish --tag next",
"pub:release": "npm run c && npm publish"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.2.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.8.0",
"@types/qrcode": "^1.5.0",
"@types/uuid": "^9.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"fs-extra": "^10.1.0",
"jsonwebtoken": "^9.0.0",
"qrcode": "^1.5.1",
"tsc-alias": "^1.8.2",
"uuid": "^9.0.0",
"zod": "^3.20.2"
}
}