76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@polymech/commons",
|
|
"version": "0.2.6",
|
|
"license": "BSD",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./variables": {
|
|
"import": "./dist/variables.js",
|
|
"require": "./dist/variables.cjs"
|
|
},
|
|
"./types": {
|
|
"import": "./dist/types.js",
|
|
"require": "./dist/types.cjs"
|
|
},
|
|
"./schemas": {
|
|
"import": "./dist/schemas/index.js",
|
|
"require": "./dist/schemas/index.cjs"
|
|
}
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "BSD",
|
|
"url": "https://git.osr-plastic.org/osr-plastic/osr-core/blob/master/LICENSE"
|
|
}
|
|
],
|
|
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.osr-plastic.org/osr-plastic/osr-core.git"
|
|
},
|
|
"types": "index.d.ts",
|
|
"dependencies": {
|
|
"@polymech/core": "workspace:*",
|
|
"@polymech/fs": "workspace:*",
|
|
"env-var": "^7.5.0",
|
|
"glob": "^10.4.1",
|
|
"tslog": "^3.3.3",
|
|
"tsup": "^8.3.5",
|
|
"yargs": "^17.7.2",
|
|
"zod": "^3.24.1",
|
|
"zod-to-json-schema": "^3.24.1",
|
|
"zod-to-ts": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.18.0",
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@types/node": "^8.10.66",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-regexp": "^2.7.0",
|
|
"globals": "^15.14.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5",
|
|
"typescript-eslint": "^8.20.0"
|
|
},
|
|
"scripts": {
|
|
"test": "tsc && mocha build/test",
|
|
"buildtsc": "tsc -p . --declaration",
|
|
"build": "tsup",
|
|
"start": "node build/index.js",
|
|
"typings": "tsc -p . --declaration",
|
|
"dev": "tsc -p . --declaration -w"
|
|
},
|
|
"modules": [],
|
|
"readmeFilename": "Readme.md"
|
|
}
|