chore: moved to bun
This commit is contained in:
20
package.json
20
package.json
@@ -14,20 +14,24 @@
|
||||
"build:cleanup": "turbo run build:cleanup"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"eslint": "^9.25.1",
|
||||
"http-server": "^14.1.1",
|
||||
"prettier": "^3.5.3",
|
||||
"stylelint": "^16.19.1",
|
||||
"turbo": "^2.5.2"
|
||||
},
|
||||
"packageManager": "pnpm@10.4.1",
|
||||
"name": "aklive2d",
|
||||
"type": "module",
|
||||
"pnpm": {
|
||||
"onlyBuiltDependencies": [
|
||||
"@parcel/watcher",
|
||||
"@swc/core",
|
||||
"esbuild"
|
||||
]
|
||||
}
|
||||
"config": {
|
||||
"commitizen": {
|
||||
"path": "cz-conventional-changelog"
|
||||
}
|
||||
},
|
||||
"packageManager": "bun@1.2.11",
|
||||
"workspaces": ["packages/*", "apps/*"],
|
||||
"trustedDependencies": [
|
||||
"@parcel/watcher",
|
||||
"@swc/core"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import sharp from 'sharp'
|
||||
import path from 'path'
|
||||
import path from 'node:path'
|
||||
|
||||
export const process = async (filename, maskFilename, extractedDir) => {
|
||||
const image = sharp(path.join(extractedDir, filename)).removeAlpha()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import fs, { promises as fsP } from 'fs'
|
||||
import path from 'path'
|
||||
import fs, { promises as fsP } from 'node:fs'
|
||||
import path from 'node:path'
|
||||
import yauzl from 'yauzl-promise'
|
||||
import yazl from 'yazl'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import fs from 'node:fs'
|
||||
import path from 'node:path'
|
||||
import { parse } from 'yaml'
|
||||
|
||||
export function read(file_dir, customTags = []) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import path from 'path'
|
||||
import path from 'node:path'
|
||||
import { file } from '@aklive2d/libs'
|
||||
import { githubDownload } from '@aklive2d/downloader'
|
||||
import config from '@aklive2d/config'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import jsdom from 'jsdom'
|
||||
import path from 'path'
|
||||
import path from 'node:path'
|
||||
import { file } from '@aklive2d/libs'
|
||||
import config from '@aklive2d/config'
|
||||
|
||||
|
||||
5429
pnpm-lock.yaml
generated
5429
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user