{
	"name": "sassdoc-parser",
	"version": "3.4.1",
	"engines": {
		"node": ">=20"
	},
	"description": "A lightweight parser for SassDoc.",
	"keywords": [
		"sassdoc",
		"scss",
		"sass"
	],
	"homepage": "https://github.com/wkillerud/sassdoc-parser#readme",
	"repository": {
		"type": "git",
		"url": "https://github.com/wkillerud/sassdoc-parser.git"
	},
	"bugs": {
		"url": "https://github.com/wkillerud/sassdoc-parser/issues"
	},
	"files": [
		"dist",
		"types"
	],
	"type": "module",
	"main": "./dist/cjs/index.js",
	"module": "./dist/esm/index.js",
	"types": "./dist/types/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"require": "./dist/cjs/index.js",
			"import": "./dist/esm/index.js",
			"default": "./dist/esm/index.js"
		}
	},
	"scripts": {
		"clean": "rm -rf dist",
		"build": "npm run clean && npm run compile && ./postbuild.sh",
		"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
		"dev": "tsc -w",
		"lint": "eslint 'src/**/*.ts'",
		"test": "vitest",
		"prepublishOnly": "npm run build && npm run lint && npm run test"
	},
	"author": "William Killerud <william@killerud.com> (https://www.williamkillerud.com/)",
	"license": "MIT",
	"devDependencies": {
		"@semantic-release/git": "^10.0.1",
		"@semantic-release/github": "^9.2.4",
		"@typescript-eslint/eslint-plugin": "^6.13.2",
		"@typescript-eslint/parser": "^6.13.2",
		"eslint": "^8.15.0",
		"eslint-config-prettier": "^9.1.0",
		"eslint-plugin-import": "^2.26.0",
		"eslint-plugin-prettier": "^5.0.1",
		"prettier": "^3.1.0",
		"semantic-release": "^22.0.8",
		"typescript": "^5.0.0",
		"vitest": "^1.0.0"
	},
	"dependencies": {
		"cdocparser": "0.15.0"
	}
}
