mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
82 lines
2.2 KiB
JSON
82 lines
2.2 KiB
JSON
{
|
|
"name": "@rocket/cli",
|
|
"version": "0.9.11",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Rocket CLI",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modernweb-dev/rocket.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"author": "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)",
|
|
"homepage": "https://rocket.modern-web.dev/",
|
|
"main": "./index.cjs",
|
|
"bin": {
|
|
"rocket": "src/cli.js"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"require": "./index.cjs",
|
|
"default": "./index.js"
|
|
},
|
|
"./test-helpers": "./test-helpers/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run rocket:build",
|
|
"dev": "node ./eleventyOnly.js",
|
|
"rocket:build": "node src/cli.js build -c demo",
|
|
"rocket:start": "node src/cli.js start -c demo",
|
|
"start": "npm run rocket:start",
|
|
"test": "mocha --timeout 5000 test-node/**/*.test.{js,cjs} test-node/*.test.{js,cjs}",
|
|
"test:watch": "onchange 'src/**/*.{js,cjs}' 'test-node/**/*.{js,cjs}' -- npm test",
|
|
"types:copy": "copyfiles \"./types/**/*.d.ts\" dist-types/",
|
|
"xtest:watch": "mocha test/**/*.test.js --parallel --watch"
|
|
},
|
|
"files": [
|
|
"*.cjs",
|
|
"*.js",
|
|
"*.mjs",
|
|
"dist",
|
|
"dist-types",
|
|
"preset",
|
|
"src",
|
|
"test-helpers"
|
|
],
|
|
"keywords": [
|
|
"rocket",
|
|
"docs",
|
|
"ssg",
|
|
"demo",
|
|
"11ty",
|
|
"rollup"
|
|
],
|
|
"dependencies": {
|
|
"@11ty/eleventy": "^0.11.1",
|
|
"@11ty/eleventy-img": "^0.9.0",
|
|
"@rocket/building-rollup": "^0.3.1",
|
|
"@rocket/core": "^0.1.2",
|
|
"@rocket/eleventy-plugin-mdjs-unified": "^0.5.2",
|
|
"@rocket/eleventy-rocket-nav": "^0.3.0",
|
|
"@rollup/plugin-babel": "^5.2.2",
|
|
"@rollup/plugin-node-resolve": "^11.0.1",
|
|
"@web/config-loader": "^0.1.3",
|
|
"@web/dev-server": "^0.1.4",
|
|
"@web/dev-server-rollup": "^0.3.2",
|
|
"@web/rollup-plugin-copy": "^0.2.0",
|
|
"check-html-links": "^0.2.3",
|
|
"command-line-args": "^5.1.1",
|
|
"command-line-usage": "^6.1.1",
|
|
"fs-extra": "^9.0.1",
|
|
"micromatch": "^4.0.2",
|
|
"plugins-manager": "^0.2.4",
|
|
"slash": "^3.0.0",
|
|
"utf8": "^3.0.0",
|
|
"workbox-window": "^6.1.5"
|
|
},
|
|
"types": "dist-types/index.d.ts"
|
|
}
|