mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "@web-std/blob",
|
|
"version": "3.0.4",
|
|
"description": "Web API compatible Blob implementation",
|
|
"keywords": [
|
|
"blob",
|
|
"typed"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist/src",
|
|
"License.md",
|
|
"Readme.md"
|
|
],
|
|
"type": "module",
|
|
"module": "./src/lib.js",
|
|
"main": "./dist/src/lib.node.cjs",
|
|
"types": "./dist/src/lib.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"browser": "./src/lib.js",
|
|
"require": "./dist/src/lib.node.cjs",
|
|
"import": "./src/lib.node.js",
|
|
"types": "./dist/src/lib.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"web-encoding": "1.1.5",
|
|
"@web-std/stream": "1.0.0"
|
|
},
|
|
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
|
|
"repository": "https://github.com/web-std/io",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "15.0.2",
|
|
"@web-std/fetch": "^3.0.0",
|
|
"git-validate": "2.2.4",
|
|
"husky": "^6.0.0",
|
|
"lint-staged": "^11.0.0",
|
|
"playwright-test": "^7.2.0",
|
|
"prettier": "^2.3.0",
|
|
"rimraf": "3.0.2",
|
|
"rollup": "2.47.0",
|
|
"rollup-plugin-multi-input": "1.2.0",
|
|
"typescript": "^4.4.4",
|
|
"uvu": "0.5.2"
|
|
},
|
|
"scripts": {
|
|
"check": "tsc --build",
|
|
"build": "npm run build:cjs && npm run build:types",
|
|
"build:cjs": "rollup --config rollup.config.js",
|
|
"build:types": "tsc --build",
|
|
"prepare": "npm run build",
|
|
"test:es": "uvu test all.spec.js",
|
|
"test:web": "playwright-test -r uvu test/web.spec.js",
|
|
"test:cjs": "rimraf dist && npm run build && node dist/test/all.spec.cjs",
|
|
"test": "npm run test:es && npm run test:web && npm run test:cjs",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --no-semi --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|