-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.18 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.18 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": "react-onchain",
"version": "1.2.3",
"description": "Deploy applications to the BSV blockchain.",
"main": "dist/index.js",
"type": "module",
"bin": {
"react-onchain": "./dist/cli/cli.js"
},
"files": [
"dist/",
"js-1sat-ord-0.1.83.tgz",
"node_modules/js-1sat-ord"
],
"bundleDependencies": [
"js-1sat-ord"
],
"scripts": {
"build": "tsc && mkdir -p dist/core/rewriting/templates && npm run copy:versionRedirect && npm run copy:basePathFix && npm run copy:webpackPublicPathFix && npm run lint",
"copy:versionRedirect": "cp src/core/rewriting/templates/versionRedirect.template.js dist/core/rewriting/templates/",
"copy:basePathFix": "cp src/core/rewriting/templates/basePathFix.template.js dist/core/rewriting/templates/",
"copy:webpackPublicPathFix": "cp src/core/rewriting/templates/webpackPublicPathFix.template.js dist/core/rewriting/templates/",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "npm run build && node --test dist/tests/analyzer.test.js",
"test:sw-local": "npm run build && node dist/tests/sw-local-test.js",
"lint": "eslint --fix 'src/**/*.ts' && npm run format",
"format": "prettier --write \"src/**/*.ts\" \"*.md\" \"*.json\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.md\" \"*.json\""
},
"keywords": [
"react",
"bsv",
"1sat",
"ordinals",
"blockchain",
"deployment"
],
"author": "Dan Wagner",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/danwag06/react-onchain.git"
},
"bugs": {
"url": "https://github.com/danwag06/react-onchain/issues"
},
"homepage": "https://reactonchain.com",
"dependencies": {
"@bsv/sdk": "^1.8.11",
"@inquirer/prompts": "^7.9.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^17.2.3",
"js-1sat-ord": "file:js-1sat-ord-0.1.83.tgz",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/superagent": "^8.1.9",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.39.0",
"prettier": "^3.6.2",
"typescript": "^5.7.0"
}
}