975f0e1a51
* feat(objectloader2): Made objectloader2 to be faster! --------- Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com> Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com> Co-authored-by: Iain Sproat <68657+iainsproat@users.noreply.github.com>
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "@speckle/objectloader2",
|
|
"version": "1.0.0",
|
|
"description": "This is an updated objectloader for the Speckle viewer written in typescript",
|
|
"main": "./dist/commonjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"homepage": "https://speckle.systems",
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/specklesystems/speckle-server.git",
|
|
"directory": "packages/objectloader2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint:eslint": "eslint .",
|
|
"lint:tsc": "tsc --noEmit",
|
|
"lint": "yarn lint:eslint && yarn lint:tsc",
|
|
"lint:ci": "yarn lint:tsc",
|
|
"build": "NODE_ENV=production tshy",
|
|
"dev": "tshy --watch",
|
|
"test": "vitest",
|
|
"test:single-run": "vitest run"
|
|
},
|
|
"keywords": [
|
|
"speckle",
|
|
"aec",
|
|
"speckle api"
|
|
],
|
|
"author": "AEC Systems",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@speckle/shared": "workspace:^",
|
|
"dexie": "^4.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.17.5",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
"@typescript-eslint/parser": "^7.12.0",
|
|
"@vitest/ui": "^3.0.9",
|
|
"eslint": "^9.4.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"fake-indexeddb": "^6.0.0",
|
|
"prettier": "^3.3.2",
|
|
"tshy": "^3.0.2",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^3.0.7",
|
|
"vitest-fetch-mock": "^0.4.5"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"default": "./dist/commonjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"tshy": {
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
],
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./src/index.ts"
|
|
}
|
|
}
|
|
}
|