web-features 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/index.json +1 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # Curated list of Web platform features
2
+
3
+ This package is experimental, expect frequent breaking changes!
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ npm install web-features
9
+ ```
10
+
11
+ ```js
12
+ import webFeatures from 'web-features' assert { type: 'json' };
13
+ ```
package/index.json ADDED
@@ -0,0 +1 @@
1
+ {"cascade-layers":{"spec":"https://drafts.csswg.org/css-cascade-5/#layering"},"dialog":{"spec":"https://html.spec.whatwg.org/multipage/#the-dialog-element"},"flexbox":{"spec":"https://drafts.csswg.org/css-flexbox-1/"},"fullscreen":{"spec":"https://fullscreen.spec.whatwg.org/"},"idle-detection":{"spec":"https://wicg.github.io/idle-detection/"},"subgrid":{"spec":"https://drafts.csswg.org/css-grid-2/#subgrids"},"temporal":{"spec":"https://tc39.es/proposal-temporal/"},"webcodecs":{"spec":"https://w3c.github.io/webcodecs/"},"webvtt":{"spec":"https://w3c.github.io/webvtt/"}}
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "web-features",
3
+ "description": "Curated list of Web platform features",
4
+ "version": "0.1.0",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/web-platform-dx/feature-set.git"
8
+ },
9
+ "main": "index.json"
10
+ }