66 lines
2.4 KiB
JSON
66 lines
2.4 KiB
JSON
{
|
|
"name": "marked-token-position",
|
|
"version": "2.0.2",
|
|
"description": "marked extension template",
|
|
"main": "./lib/index.esm.js",
|
|
"module": "./lib/index.esm.js",
|
|
"browser": "./lib/index.umd.js",
|
|
"type": "module",
|
|
"keywords": [
|
|
"marked",
|
|
"extension"
|
|
],
|
|
"files": [
|
|
"lib/",
|
|
"src/"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"typescript": "./src/index.ts",
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.esm.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:esbuild && npm run build:types",
|
|
"build:esbuild": "node esbuild.config.js",
|
|
"build:types": "tsc && dts-bundle-generator --export-referenced-types --project tsconfig.json -o lib/index.d.ts src/index.ts",
|
|
"format": "eslint --fix",
|
|
"lint": "eslint",
|
|
"test": "npm run build:esbuild && node --experimental-transform-types ./spec/test.config.js",
|
|
"test:cover": "npm run build:esbuild && node --experimental-transform-types --experimental-test-coverage ./spec/test.config.js -- --cover",
|
|
"test:only": "npm run build:esbuild && node --experimental-transform-types ./spec/test.config.js -- --only",
|
|
"test:types": "npm run build:types && tsc --project tsconfig-test-types.json && attw -P --entrypoints . --profile esm-only",
|
|
"test:update": "npm run build:esbuild && node --experimental-transform-types --test-update-snapshots ./spec/test.config.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/UziTech/marked-token-position.git"
|
|
},
|
|
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/UziTech/marked-token-position/issues"
|
|
},
|
|
"homepage": "https://github.com/UziTech/marked-token-position#readme",
|
|
"peerDependencies": {
|
|
"marked": ">=16.2.0 <19"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
"@markedjs/eslint-config": "^1.0.14",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^12.0.6",
|
|
"@semantic-release/npm": "^13.1.5",
|
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
"dts-bundle-generator": "^9.5.1",
|
|
"esbuild": "^0.28.0",
|
|
"esbuild-plugin-umd-wrapper": "^3.0.0",
|
|
"eslint": "^10.2.0",
|
|
"marked": "^18.0.0",
|
|
"semantic-release": "^25.0.3",
|
|
"typescript": "^6.0.2"
|
|
}
|
|
}
|