{
"name": "concoctor",
"version": "0.1.0",
"description": "A framework for defining restricted functions within JavaScript",
"type": "module",
"exports": {
".": "./src/concoctor.js",
"./concoctor.js": "./src/concoctor.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\"",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix"
},
"keywords": [
"dsl",
"framework",
"dynamic",
"compiler"
],
"author": "Chris Pressey",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"vitest": "^2.1.9"
}
}