@_ld/core 0.0.1

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/.yarnrc.yml +11 -0
  2. package/index.js +1 -0
  3. package/package.json +8 -0
package/.yarnrc.yml ADDED
@@ -0,0 +1,11 @@
1
+ nodeLinker: "node-modules"
2
+ npmRegistryServer: "https://registry.npmjs.org/"
3
+
4
+ plugins:
5
+ - path: ../../.yarn/plugins/@yarnpkg/plugin-version.cjs
6
+ spec: "@yarnpkg/plugin-version"
7
+
8
+ yarnPath: ../../.yarn/releases/yarn-3.6.1.cjs
9
+
10
+ npmAlwaysAuth: true
11
+ npmAuthToken: "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"
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('Linked');
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@_ld/core",
3
+ "license": "MPL-2.0",
4
+ "version": "0.0.1",
5
+ "description": "Linked is a JavaScript library for building user interfaces with linked data (also known as 'structured data', or RDF)",
6
+ "main": "index.js"
7
+ }
8
+