-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.46 KB
/
package.json
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": "truthy",
"version": "3.0.0",
"description": "Create truth tables without the pain",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caleb531/truthy.git"
},
"keywords": [
"truth tables",
"mithril"
],
"author": "Caleb Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/caleb531/truthy/issues"
},
"homepage": "https://github.com/caleb531/truthy#readme",
"dependencies": {
"@fontsource/oxygen-mono": "^5.1.0",
"@fontsource/ubuntu": "^5.1.0",
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"mithril": "^2.2.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/mithril": "^2.2.7",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.14",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"peggy": "^4.2.0",
"prettier": "^3.4.1",
"rollup-plugin-peggy": "^6.0.0",
"sass": "^1.81.0",
"vite": "^6.0.2",
"vitest": "^2.1.8"
}
}