-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 842 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 842 Bytes
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
{
"name": "heya-skill",
"type": "module",
"private": true,
"version": "2.0.0",
"scripts": {
"pipeline": "bun run scripts/pipeline.ts",
"website:dev": "astro dev",
"website:build": "astro build",
"website:preview": "astro preview",
"lint": "biome check scripts/",
"format": "biome check --write scripts/ website/src/",
"format:all": "biome check --write scripts/ website/src/",
"check": "biome check scripts/ website/src/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "^1.3.14",
"@types/sentiment": "^5.0.4",
"typescript": "^6.0.3"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.2",
"compromise": "^14.15.1",
"jieba-wasm": "^2.4.0",
"natural": "^8.1.1",
"sentiment": "^5.0.2",
"tailwindcss": "^4.3.0"
}
}