cheminfo-types
Advanced tools
Comparing version 0.6.0 to 0.7.0
{ | ||
"name": "cheminfo-types", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"description": "Types for cheminfo packages and cheminfo data schema ", | ||
@@ -17,2 +17,4 @@ "main": "./src/index.d.ts", | ||
"eslint-fix": "npm run eslint -- --fix", | ||
"prettier": "prettier --check src", | ||
"prettier-write": "prettier --write src", | ||
"test": "npm run eslint && npm run check-types", | ||
@@ -30,9 +32,9 @@ "generate-json": "ts-node json/buildJSON.ts" | ||
"devDependencies": { | ||
"eslint": "^7.27.0", | ||
"eslint-config-cheminfo-typescript": "^8.0.9", | ||
"eslint": "^8.1.0", | ||
"eslint-config-cheminfo-typescript": "^10.2.2", | ||
"js-yaml": "^4.1.0", | ||
"prettier": "^2.3.0", | ||
"typescript": "^4.2.4", | ||
"typescript-json-schema": "^0.50.0" | ||
"prettier": "^2.4.1", | ||
"typescript": "^4.4.4", | ||
"typescript-json-schema": "^0.51.0" | ||
} | ||
} |
@@ -10,1 +10,6 @@ export { DataXY } from './core/DataXY'; | ||
export { Range } from './core/Range'; | ||
export { FromTo } from './core/FromTo'; | ||
export { FromToXY } from './core/FromToXY'; | ||
export { PointXY } from './core/PointXY'; | ||
export { TextData } from './core/TextData'; |
@@ -0,1 +1,2 @@ | ||
import { Instrument } from '../../../todo/general/Instrument.d'; | ||
import { DoubleArray } from '../../core/DoubleArray'; | ||
@@ -20,5 +21,8 @@ | ||
dataType?: string; | ||
settings?: Record<string, any>; | ||
settings?: { | ||
instrument?: Instrument; | ||
[key: string]: any; | ||
}; | ||
meta?: Record<string, any>; | ||
derived?: Record<string, any>; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10210
18
312