@kcaitech/text2path
Version:
kcaitech text2path module
78 lines (77 loc) • 1.96 kB
JSON
{
"name": "@kcaitech/text2path",
"version": "1.0.0",
"private": false,
"type": "module",
"description": "kcaitech text2path module",
"author": "kcaitech.com",
"license": "GPL-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kcaitech/text2path.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "tsc -w",
"build": "rollup --config",
"test": "jest",
"eslint": "eslint --ext .js,.ts,.vue src"
},
"dependencies": {
"@kcaitech/potrace-ts": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "4.3.6",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"rollup": "^4.18.0",
"rollup-plugin-clear": "^2.0.7",
"ts-jest": "^29.0.5",
"tslib": "^2.6.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"keywords": ["text to svg path", "potrace"],
"productName": "kcdesign-core",
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/$1"
},
"testEnvironment": "node",
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"preset": "ts-jest",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/dist/"
],
"maxConcurrency": 10,
"maxWorkers": 1
}
}