-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "kotonoha-palette",
"version": "2.0.0",
"type": "module",
"description": "What your color?",
"author": "takanakahiko",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build && node scripts/fix-wasm-paths.mjs",
"preview": "wrangler dev",
"test": "npm run test:colors && npm run test:integration",
"test:colors": "DISABLE_CACHE=1 node --env-file-if-exists=.env --test --import jiti/register tests/colors.test.ts",
"test:integration": "node --test --test-timeout=300000 --import jiti/register tests/integration.test.ts",
"test:e2e": "npx playwright test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"@cf-wasm/og": "^0.3.7",
"@jsquash/webp": "^1.5.0",
"jpeg-js": "^0.4.4",
"upng-js": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@cloudflare/workers-types": "^4.20260312.1",
"@nuxt/fonts": "^0.14.0",
"@playwright/test": "^1.58.2",
"nuxt": "^4.3.1",
"sass": "^1.98.0",
"typescript": "^5.9.3",
"wrangler": "^4.80.0"
}
}