kmore-types
Advanced tools
Comparing version 56.0.2 to 57.0.0
{ | ||
"name": "kmore-types", | ||
"author": "waiting", | ||
"version": "56.0.2", | ||
"version": "57.0.0", | ||
"description": "Retrieve types info from ts file", | ||
@@ -15,8 +15,10 @@ "keywords": [ | ||
"bin": {}, | ||
"types": "./dist/index.d.ts", | ||
"types": "dist/index.d.ts", | ||
"imports": { | ||
"#package.json": "./package.json", | ||
"##/*": "./dist/*", | ||
"#@/*": "./test/*" | ||
}, | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
".": "./dist/index.js", | ||
"./package.json": "./package.json" | ||
@@ -34,3 +36,3 @@ }, | ||
"dependencies": { | ||
"@waiting/shared-types-dev": "^14.1.1" | ||
"@waiting/shared-types-dev": "^14.3.3" | ||
}, | ||
@@ -48,3 +50,4 @@ "engines": { | ||
"src/**/*.ts", | ||
"bin/*.js", | ||
"bin", | ||
"database", | ||
"dist", | ||
@@ -58,20 +61,17 @@ "!**/*.spec.*", | ||
"scripts": { | ||
"build": "npm run tsc && tsc-alias && npm run rp", | ||
"clean": "npm run clean:lock && npm run clean:cache && npm run clean:dist && npm run clean:log", | ||
"build": "npm run tsc && tsc-alias", | ||
"clean": "npm run clean:lock && npm run clean:dist && npm run clean:log", | ||
"clean:cache": "rm -rf .eslintcache .tsbuildinfo", | ||
"clean:dist": "rm -rf dist/* .tsbuildinfo", | ||
"clean:lock": "rm package-lock.json -f", | ||
"clean:dist": "npm run clean:cache && rm -rf dist/*", | ||
"clean:lock": "rm -f package-lock.json", | ||
"clean:log": "rm -rf ./logs ./run", | ||
"cov": "cross-env TS_NODE_PROJECT=test/tsconfig.json c8 mocha --parallel=false", | ||
"cov": "c8 --all npm run test -- --parallel=false", | ||
"lint": "eslint --fix --cache {src,test}/**/*.ts", | ||
"lint:nofix": "eslint --cache {src,test}/**/*.ts", | ||
"purge": "npm run clean && rm node_modules -rf", | ||
"pretest": "npm run build", | ||
"rp": "rollup -c rollup.config.js --context this", | ||
"pretest": "npm run build", | ||
"pretest:local": "npm run build", | ||
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha", | ||
"test:local": "cross-env TS_NODE_PROJECT=test/tsconfig.json ../../node_modules/.bin/mocha", | ||
"tsc": "tsc -b " | ||
"test": "cross-env NODE_ENV=test TS_NODE_PROJECT=test/tsconfig.json mocha --jobs=4", | ||
"tsc": "tsc -b" | ||
}, | ||
"gitHead": "a832ad609efe157164699628703c7b0be6b7e345" | ||
"gitHead": "0fdc0c7117fec6aad78edb3bce7e7c1c01038c0d" | ||
} |
@@ -23,4 +23,4 @@ { | ||
"paths": { | ||
"~/*": ["./src/*"], | ||
"@/*": ["./test/*"] | ||
"##/*": ["src/*"], | ||
"#@/*": ["test/*"] | ||
}, | ||
@@ -48,3 +48,2 @@ "preserveConstEnums": true, | ||
"node_modules*", | ||
"test", | ||
"**/*.d.ts", | ||
@@ -56,6 +55,4 @@ "**/*.spec.ts" | ||
"experimentalResolver": true, | ||
"experimentalSpecifierResolution": "node", | ||
"preferTsExts": true, | ||
"transpileOnly": true | ||
"experimentalSpecifierResolution": "node" | ||
} | ||
} |
{ | ||
"extends": "./tsconfig.base.json" | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
} | ||
} |
20888
25
615