-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "liquid-color",
"version": "1.5.0",
"private": true,
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run build:prod",
"build:dev": "tsc -p tsconfig.dev.json && npm run build:bundle:dev",
"build:prod": "tsc -p tsconfig.prod.json && npm run build:bundle:prod",
"build:bundle:dev": "esbuild src/liquidcolor.ts --bundle --platform=browser --format=iife --target=es2020 --sourcemap --outfile=dist/liquidcolor.js",
"build:bundle:prod": "esbuild src/liquidcolor.ts --bundle --platform=browser --format=iife --target=es2020 --minify --outfile=dist/liquidcolor.js && node -e \"require('fs').rmSync('dist/liquidcolor.js.map', { force: true })\"",
"typecheck": "tsc --noEmit -p tsconfig.dev.json",
"lint": "eslint .",
"watch": "npm run watch:dev",
"watch:ts": "tsc --watch -p tsconfig.dev.json",
"watch:bundle": "esbuild src/liquidcolor.ts --bundle --platform=browser --format=iife --target=es2020 --sourcemap --outfile=dist/liquidcolor.js --watch",
"watch:dev": "concurrently -k -n TSC,ESBUILD -c cyan,magenta \"npm:watch:ts\" \"npm:watch:bundle\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.1.2",
"esbuild": "^0.25.3",
"eslint": "^9.39.4",
"globals": "^17.5.0",
"jsdom": "^26.1.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^3.2.4"
},
"dependencies": {
"vue": "^3.5.33"
}
}