AK-21/Graphite-Industrial-Intelligence
0
1{2 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",3 "bugs": "https://github.com/vfile/vfile-message/issues",4 "contributors": [5 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"6 ],7 "dependencies": {8 "@types/unist": "^3.0.0",9 "unist-util-stringify-position": "^4.0.0"10 },11 "description": "vfile utility to create a virtual message",12 "devDependencies": {13 "@types/node": "^24.0.0",14 "c8": "^10.0.0",15 "prettier": "^3.0.0",16 "remark-cli": "^12.0.0",17 "remark-preset-wooorm": "^11.0.0",18 "type-coverage": "^2.0.0",19 "typescript": "^5.0.0",20 "xo": "^1.0.0"21 },22 "exports": "./index.js",23 "files": [24 "index.d.ts",25 "index.js",26 "lib/"27 ],28 "funding": {29 "type": "opencollective",30 "url": "https://opencollective.com/unified"31 },32 "keywords": [33 "file",34 "message",35 "utility",36 "util",37 "vfile-util",38 "vfile",39 "virtual"40 ],41 "license": "MIT",42 "name": "vfile-message",43 "prettier": {44 "bracketSpacing": false,45 "semi": false,46 "singleQuote": true,47 "tabWidth": 2,48 "trailingComma": "none",49 "useTabs": false50 },51 "remarkConfig": {52 "plugins": [53 "remark-preset-wooorm"54 ]55 },56 "repository": "vfile/vfile-message",57 "scripts": {58 "build": "tsc --build --clean && tsc --build && type-coverage",59 "format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",60 "prepack": "npm run build && npm run format",61 "test-api": "node --conditions development test.js",62 "test-coverage": "c8 --100 --reporter lcov -- npm run test-api",63 "test": "npm run build && npm run format && npm run test-coverage"64 },65 "sideEffects": false,66 "typeCoverage": {67 "atLeast": 100,68 "ignoreCatch": true69 },70 "type": "module",71 "version": "4.0.3",72 "xo": {73 "prettier": true,74 "rules": {75 "prefer-destructuring": "off",76 "unicorn/prefer-at": "off"77 },78 "space": true79 }80}81 