-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.02 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.02 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
58
59
60
61
{
"name": "regor",
"version": "1.4.1",
"description": "A modern UI framework for web and desktop applications, inspired by Vue's concepts and powered by simplicity and flexibility.",
"author": "Ahmed Yasin Koculu",
"license": "MIT",
"type": "module",
"main": "dist/regor.es2022.esm.js",
"module": "dist/regor.es2022.esm.js",
"types": "dist/regor.d.ts",
"scripts": {
"build": "yarn tsx scripts/bundle.ts && yarn dts",
"bench:build": "yarn tsx benchmarks/build.ts",
"bench:serve": "yarn bench:build && yarn tsx benchmarks/server.ts",
"perf": "yarn tsx benchmarks/minidom/perf.ts",
"perf:record": "yarn tsx benchmarks/minidom/perf.ts record",
"perf:check": "yarn tsx benchmarks/minidom/perf.ts check",
"perf:profile": "yarn tsx benchmarks/minidom/profile.ts",
"dts": "yarn dts-bundle-generator src/index.ts -o dist/regor.d.ts",
"lint": "yarn eslint src/**/*.ts tests/**/*.ts",
"watch": "yarn tsx scripts/bundle.ts --watch",
"format": "yarn prettier --write \"**/*.ts\"",
"test": "vitest",
"coverage": "yarn vitest run --coverage --coverage.include='src/**/*.ts' --coverage.reporter=text-summary --coverage.reporter=text"
},
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/koculu/regor.git"
},
"keywords": [
"regor"
],
"bugs": {
"url": "https://github.com/koculu/regor/issues"
},
"homepage": "https://github.com/koculu/regor#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/node": "^25.2.1",
"@vitest/coverage-istanbul": "3.2.3",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.25.5",
"eslint": "^9.39.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.0",
"prettier": "^3.5.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^3.2.3"
},
"packageManager": "[email protected]",
"resolutions": {
"typescript": "^5.9.3"
}
}