1
Fork 0
defiler/package.json

51 lines
986 B
JSON
Raw Normal View History

2017-04-20 16:10:29 -04:00
{
"name": "defiler",
2021-09-19 07:46:19 -04:00
"version": "2.2.0",
2017-04-20 16:10:29 -04:00
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
2018-11-13 06:03:50 -05:00
"types": "types/index.d.ts",
"files": [
"*.md",
2018-11-13 06:03:50 -05:00
"dist",
"types"
],
"engines": {
2020-10-26 02:36:09 -04:00
"node": "^12.17 || >=13.10"
},
2017-04-20 16:10:29 -04:00
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/defiler.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
2020-05-31 19:26:02 -04:00
"homepage": "https://conduitry.dev/defiler",
"devDependencies": {
"@types/node": "=12",
2020-05-31 19:24:41 -04:00
"rollup": "^2",
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
"typescript": "^4"
},
"scripts": {
2018-11-10 13:02:46 -05:00
"build": "rollup -c",
2018-10-02 19:37:14 -04:00
"dev": "rollup -cw",
2018-10-02 18:41:41 -04:00
"prepare": "npm run build"
}
2017-04-20 16:10:29 -04:00
}