├── .gitignore ├── index.bs └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | index.html -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- 1 |
2 | Title: package.json Specification 3 | Shortname: package-json 4 | Level: 1 5 | Status: w3c/CG-DRAFT 6 | Group: wintercg 7 | URL: http://package-json.proposal.wintercg.org 8 | Editor: Ethan Arrowood, Vercel http://vercel.com, ethan-arrowood@vercel.com 9 | Abstract: A proposal defining a specification for package.json 10 | Markup Shorthands: markdown yes 11 |12 |
13 | spec:url; type:interface; text:URL 14 | spec:html; type:attribute; for:Window; text:navigator 15 | spec:html; type:attribute; for:Window; text:self 16 |17 | 18 | Introduction {#intro} 19 | ===================== 20 | 21 | > TODO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repository is currently archived. See this [message](https://github.com/wintercg/proposal-package-json/issues/1#issuecomment-1599195187) for more details. 2 | 3 | Join us for the continuation of this work over in the [OpenJS Foundation's Standards Working Group](https://github.com/openjs-foundation/standards). 4 | 5 | --- 6 | 7 | # proposal-package-json 8 | 9 | A proposal specifying package.json 10 | 11 | ## Build 12 | 13 | Run the following command to build the specification. 14 | 15 | ```sh 16 | curl https://api.csswg.org/bikeshed/ -F file=@index.bs -F force=1 > index.html 17 | ``` 18 | 19 | If you need an offline-mode option, follow the [Bikeshed installation instructions](https://speced.github.io/bikeshed/#install-final) and use the CLI. 20 | --------------------------------------------------------------------------------