-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "kss-modern",
"type": "module",
"version": "0.0.43",
"description": "Modern KSS compatible styleguide generator",
"repository": {
"type": "git",
"url": "git+https://github.com/felixranesberger/kss-modern.git"
},
"bugs": "https://github.com/felixranesberger/kss-modern/issues",
"main": "./dist/node/lib/index.mjs",
"types": "./dist/node/lib/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build && unbuild",
"dev": "bun run build && deno run --unstable-sloppy-imports --allow-all index.ts",
"lint": "eslint {lib,client}",
"release": "bun run lint && bumpp",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "bun run build && playwright test"
},
"dependencies": {
"@antfu/utils": "^9.3.0",
"@biomejs/js-api": "^4.0.0",
"@biomejs/wasm-nodejs": "^2.4.13",
"@shikijs/markdown-it": "^4.0.2",
"chokidar": "^5.0.0",
"fs-extra": "^11.3.4",
"markdown-it-async": "^2.2.0",
"pug": "^3.0.4",
"shiki": "^4.0.2",
"tinyglobby": "^0.2.16"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.4",
"@types/bun": "^1.3.13",
"@types/fs-extra": "^11.0.4",
"@vitest/coverage-v8": "^4.1.5",
"axe-core": "^4.11.4",
"bumpp": "^11.0.1",
"eslint": "^10.2.1",
"eslint-plugin-format": "^2.0.1",
"html-validate": "^10.13.1",
"jsdom": "^29.1.1",
"keyux": "^0.11.5",
"motion": "^12.38.0",
"unbuild": "^3.6.1",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}