1
Fork 0
defiler/package.json
2022-08-28 06:05:42 -04:00

50 lines
1,009 B
JSON

{
"name": "defiler",
"version": "2.2.1",
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"*.md",
"dist"
],
"engines": {
"node": "^12.17 || >=13.10"
},
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/defiler.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
"homepage": "https://conduitry.dev/defiler",
"devDependencies": {
"@types/node": "=12",
"rollup": "^2",
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
"typescript": "^4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"prepare": "npm run build"
}
}