83d8035dc2
* root + server * frontend * frontend-2 * dui3 * dui3 * tailwind theme * ui-components * preview service * viewer * viewer-sandbox * fileimport-service * webhook service * objectloader * shared * ui-components-nuxt * WIP full config * WIP full linter * eslint projectwide util * minor fix * removing redundant ci * clean up test errors * fixed prettier formatting * CI improvements * TSC lint fix * 'buildBatch' needs to be async since some batch types (like Text) require it. Removed a disabled liniting rule from ObjLoader * removed unnecessary void --------- Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "@speckle/objectloader",
|
|
"version": "2.5.4",
|
|
"description": "Simple API helper to stream in objects from the Speckle Server.",
|
|
"main": "dist/objectloader.js",
|
|
"module": "dist/objectloader.esm.js",
|
|
"types": "types/index.d.ts",
|
|
"homepage": "https://speckle.systems",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/specklesystems/speckle-server.git",
|
|
"directory": "packages/objectloader"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"build:dev": "rollup --config",
|
|
"build": "NODE_ENV=production rollup --config",
|
|
"prepack": "yarn build",
|
|
"dev": "rollup --config --watch",
|
|
"example": "EXAMPLE_BUILD=1 rollup --config && http-server ./examples/browser -p 3031 -o"
|
|
},
|
|
"keywords": [
|
|
"speckle",
|
|
"aec",
|
|
"speckle api"
|
|
],
|
|
"author": "AEC Systems",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@babel/core": "^7.17.9",
|
|
"@speckle/shared": "workspace:^",
|
|
"core-js": "^3.21.1",
|
|
"regenerator-runtime": "^0.13.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.15.7",
|
|
"@babel/core": "^7.17.5",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@rollup/plugin-babel": "^5.3.1",
|
|
"@rollup/plugin-commonjs": "^21.0.3",
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"cross-fetch": "^3.1.5",
|
|
"eslint": "^9.4.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"http-server": "^14.1.0",
|
|
"prettier": "^2.5.1",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-delete": "^2.0.0"
|
|
},
|
|
"gitHead": "5627e490f9a3ecadf19cc4686ad15f344d9ad2d3"
|
|
}
|