-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@prostojs/router",
"version": "0.3.4",
"description": "Super Fast and Robust URI-router for NodeJS",
"keywords": [
"prostojs",
"router"
],
"homepage": "https://github.com/prostojs/router#readme",
"bugs": {
"url": "https://github.com/prostojs/router/issues"
},
"license": "MIT",
"author": "Artem Maltsev",
"repository": {
"type": "git",
"url": "git+https://github.com/prostojs/router.git"
},
"files": [
"index.js",
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && rolldown -c rolldown.config.mjs && rm -rf dts-build",
"release": "node ./scripts/release",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"@prostojs/cache": "^0.0.1",
"@prostojs/parser": "^0.5.11",
"@prostojs/tree": "^0.2.2"
},
"devDependencies": {
"@prostojs/dye": "^0.5.0",
"@types/node": "^22.0.0",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.4.1",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"minimist": "^1.2.8",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"rolldown": "1.0.0-rc.5",
"rolldown-plugin-dts": "^0.22.1",
"semver": "^7.7.4",
"typescript": "^5.9.3",
"vitest": "^3.0.0",
"yorkie": "^2.0.0"
},
"buildOptions": {
"formats": [
"esm-bundler",
"cjs"
]
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
},
"pnpm": {
"overrides": {
"cross-spawn": ">=7.0.6"
}
}
}