-
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 745 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 745 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
{
"type": "module",
"devDependencies": {
"@nette/eslint-plugin": "^0.1.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@vitest/ui": "^4.0.16",
"eslint": "^9.26.0",
"globals": "^15.3.0",
"jsdom": "^27.3.0",
"rollup": "^4.40.2",
"rollup-plugin-dts": "^6.2.1",
"terser": "^5.39.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^4.0.16"
},
"scripts": {
"typecheck": "tsc -noemit",
"lint": "eslint --cache",
"lint:fix": "eslint --cache --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"build": "rollup -c",
"postbuild": "npm run test"
}
}