-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "arguebuf",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"check": "vitest run --no-cache",
"coverage": "vitest run --coverage",
"prepack": "npm run build",
"lint": "eslint ./src"
},
"dependencies": {
"arg-services": "^4",
"dayjs": "^1",
"immer": "^10"
},
"devDependencies": {
"@argdown/core": "^1",
"@eslint/js": "^9",
"@types/eslint__js": "^8",
"@types/node": "^22",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9",
"typescript-eslint": "^8",
"typescript": "^5",
"vite-plugin-checker": "^0.8",
"vite-plugin-dts": "^4",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"optionalDependencies": {
"@argdown/core": "^1"
},
"files": [
"dist"
],
"exports": "./dist/index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "github:recap-utr/arguebuf-typescript"
}