mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-04-24 09:22:15 +00:00
* Add npm-aqua-compiler package * Release new package * Remove noUncheckedIndexedAccess from tsconfig.json * Fix a test script * Fix length checks * Fix * Update error description * Try to choose a nicer err message * New import format and API * Fix error message * Improve test * Don't add empty string key when globalImports prop is empty * Fix exports
30 lines
671 B
JSON
30 lines
671 B
JSON
{
|
|
"type": "module",
|
|
"name": "@fluencelabs/npm-aqua-compiler",
|
|
"version": "0.0.0",
|
|
"description": "Tool for converting npm imports to aqua compiler input",
|
|
"types": "./dist/imports.d.ts",
|
|
"exports": {
|
|
".": "./dist/imports.js"
|
|
},
|
|
"scripts": {
|
|
"test": "npm i --prefix ./test/transitive-deps/project && vitest run",
|
|
"build": "tsc"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [],
|
|
"author": "Fluence Labs",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@npmcli/arborist": "^7.2.1",
|
|
"treeverse": "3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/npmcli__arborist": "5.6.5",
|
|
"@types/treeverse": "3.0.4",
|
|
"vitest": "0.34.6"
|
|
}
|
|
}
|