-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.07 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
58
59
60
61
62
63
64
65
66
67
{
"name": "dusa",
"version": "0.0.14",
"type": "module",
"main": "lib/client.js",
"types": "lib/client.d.ts",
"exports": {
"require": "./lib/client.cjs",
"import": "./lib/client.js"
},
"homepage": "https://dusa.rocks",
"repository": {
"type": "git",
"url": "https://git.sr.ht/~robsimmons/dusa.git"
},
"bugs": {
"url": "https://todo.sr.ht/~robsimmons/Dusa"
},
"keywords": [
"data",
"database",
"datalog",
"logic programming"
],
"license": "GPL-3.0-only",
"scripts": {
"build": "tsc && vite build",
"coverage": "vitest run --coverage",
"dev": "vite",
"lib": "tsc --project tsconfig.package.json && rollup lib/client.js --file lib/client.cjs --format cjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --ignore-path .prettierignore --write *.ts *.json *.html *.md **/*.ts* **/*.json **/*.css **/*.html **/*.md",
"prettier:check": "prettier --ignore-path .prettierignore --check .",
"preview": "vite preview",
"protobuf": "buf generate --template proto/buf.gen.yaml proto && prettier --write src/gen/*.ts",
"test": "vitest run",
"tsc": "tsc",
"watch": "vitest"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.6.0",
"@codemirror/commands": "^6.3.0",
"@codemirror/language": "^6.9.2",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.21.4",
"@lezer/highlight": "^1.1.6",
"@radix-ui/react-icons": "^1.3.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.5.2",
"sketchzone": "^0.0.11",
"typescript": "^5.0.2",
"vite": "^5.0.13",
"vitest": "^1.6.0"
}
}