-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "arweave-archive",
"type": "module",
"version": "0.0.16",
"description": "A node package to archive webpage & it's screenshot to Arweave",
"author": "Pawan Paudel <pawanpaudel93@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/pawanpaudel93",
"homepage": "https://github.com/pawanpaudel93/arweave-archive#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pawanpaudel93/arweave-archive.git"
},
"bugs": "https://github.com/pawanpaudel93/arweave-archive/issues",
"keywords": [
"web3",
"arweave-archive",
"arweave",
"bundlr"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "vitest",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test doc:html version doc:publish",
"publish-package": "npm run build && git push --follow-tags origin main && npm publish",
"release": "npm run prepare-release && npm run publish-package"
},
"dependencies": {
"arbundles": "^0.9.6",
"arweave": "^1.13.7",
"axios": "^1.4.0",
"mime-types": "^2.1.35",
"save-html-screenshot": "^0.0.15"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@antfu/ni": "^0.21.4",
"@antfu/utils": "^0.7.4",
"@types/mime-types": "^2.1.1",
"arlocal": "^1.1.60",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"gh-pages": "^3.2.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"standard-version": "^9.5.0",
"ts-node": "^9.1.1",
"typedoc": "^0.19.2",
"typescript": "^4.9.5",
"unbuild": "^1.2.1",
"vitest": "^0.31.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}