|
|
@ -2,11 +2,23 @@ |
|
|
|
"name": "@ldo/jsonld-dataset-proxy", |
|
|
|
"name": "@ldo/jsonld-dataset-proxy", |
|
|
|
"version": "1.0.0-alpha.9", |
|
|
|
"version": "1.0.0-alpha.9", |
|
|
|
"description": "", |
|
|
|
"description": "", |
|
|
|
"main": "dist/index.js", |
|
|
|
"type": "module", |
|
|
|
|
|
|
|
"main": "./dist/cjs/index.js", |
|
|
|
|
|
|
|
"module": "./dist/esm/index.js", |
|
|
|
|
|
|
|
"types": "./dist/types/index.d.ts", |
|
|
|
|
|
|
|
"exports": { |
|
|
|
|
|
|
|
".": { |
|
|
|
|
|
|
|
"types": "./dist/types/index.d.ts", |
|
|
|
|
|
|
|
"import": "./dist/esm/index.js", |
|
|
|
|
|
|
|
"require": "./dist/cjs/index.js" |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
"./package.json": "./package.json" |
|
|
|
|
|
|
|
}, |
|
|
|
"scripts": { |
|
|
|
"scripts": { |
|
|
|
"build": "tsc --project tsconfig.build.json", |
|
|
|
"build": "rimraf dist && npm run build:cjs && npm run build:esm", |
|
|
|
"build:watch": "tsc-watch", |
|
|
|
"build:cjs": "tsc --project tsconfig.cjs.json", |
|
|
|
"test": "NODE_NO_WARNINGS=1 jest --coverage", |
|
|
|
"build:esm": "tsc --project tsconfig.esm.json", |
|
|
|
|
|
|
|
"test": "jest --coverage", |
|
|
|
"prepublishOnly": "npm run test && npm run build", |
|
|
|
"prepublishOnly": "npm run test && npm run build", |
|
|
|
"start": "ts-node ./example/example.ts", |
|
|
|
"start": "ts-node ./example/example.ts", |
|
|
|
"start:lang": "ts-node ./example/languageExample.ts", |
|
|
|
"start:lang": "ts-node ./example/languageExample.ts", |
|
|
|