0.0.11 • Published 1 year ago

@package-json/create v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@package-json/create

npm version npm downloads license

Zero-config package.json creator.

Usage

cli
# npm
npx create @package-json

# pnpm
pnpm create @package-json

# bun
bun create @package-json
programmatic
import { create } from '@package-json/create'

const json = create()

export default json
config
// pkgc.config.ts / package-json-create.config.ts
import { defineConfig } from '@package-json/create'

export default defineConfig({
  name: '@package-json/foo', // scope: @package-json
  scripts: {
    'build': 'pkgroll',
    'build:watch': 'pkgroll --watch',
    'test': 'vitest run',
    'test:watch': 'vitest watch',
  },
  type: 'module',
})

License

MIT

0.0.10

1 year ago

0.0.11

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago