{
	"name": "vectortracer",
	"description": "Wasm bindings to visioncortex's vtracer library, a rust image vectorizer library.",
	"version": "0.1.2",
	"type": "module",
	"exports": {
		".": "./pkg/vectortracer.js"
	},
	"types": "./pkg/vectortracer.d.ts",
	"sideEffects": [
		"./pkg/vectortracer.js",
		"./pkg/snippets/*"
	],
	"scripts": {
		"lint": "npm run lint:rustfmt",
		"lint:rustfmt": "cargo +nightly fmt -- --check",
		"lint:rustfmt:fix": "cargo +nightly fmt",
		"lint:commits": "commitlint --from $(git rev-list --max-parents=0 HEAD) --to HEAD --verbose",
		"build": "pnpm exec wasm-pack build && rm pkg/package.json",
		"test": "cargo test",
		"actions:debug": "act -r -v -j build",
		"prepare": "husky install && pnpm run build"
	},
	"devDependencies": {
		"@alanscodelog/commitlint-config": "^2.0.0",
		"@alanscodelog/semantic-release-config": "^3.0.0",
		"commitlint": "^17.7.1",
		"husky": "^8.0.3",
		"semantic-release": "^21.0.6",
		"wasm-pack": "^0.12.1"
	},
	"release": {
		"extends": [
			"@alanscodelog/semantic-release-config"
		]
	},
	"commitlint": {
		"extends": [
			"@alanscodelog"
		]
	},
	"files": [
		"pkg/vectortracer.js",
		"pkg/vectortracer.d.ts",
		"pkg/vectortracer_bg.js",
		"pkg/vectortracer_bg.wasm",
		"pkg/vectortracer_bg.wasm.d.ts",
		"src",
		"cargo.toml",
		"build.sh",
		"setup.sh",
		"README.md"
	],
	"license": "MIT",
	"keywords": [
		"imagetracer",
		"vectorizer",
		"vectortracer",
		"vector",
		"converter",
		"wasm",
		"vtracer",
		"visioncortex"
	],
	"author": "Alan North <alanscodelog@gmail.com>",
	"repository": "https://github.com/AlansCodeLog/vectortracer.git",
	"@comments": {
		"": "This package json is the one we will actually use since the auto-generated one cannot be changed. It allows the repo to be installed directly from github and can allow adding additional files and build steps.",
		"files": "The manually specified pkg/* files are a temporary workaround for https://github.com/npm/cli/issues/6164.",
		"scripts": {
			"lint:commits": "Lints all unpushed commits in the active branch.",
			"prepare": "Needed so that if we pull the package from git it will get built and installed properly.",
			"actions:debug": "For debugging github build action locally with nektos/act. Requires act and docker. Note: Cache will never work locally because of https://github.com/nektos/act/issues/285"
		}
	}
}
