-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
{
"name": "trike",
"version": "0.0.0",
"private": false,
"description": "A JavaScript routing library with easy navigation control and monitoring",
"scripts": {
"build": "turbo run build",
"build:history": "turbo run build --filter=@trike/history",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:history": "turbo run test --filter=@trike/history",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier -w .",
"format:check": "prettier -c .",
"clean": "turbo run clean",
"dev:linear": "turbo run dev --filter=@trike/demo-linear",
"dev:multi": "turbo run dev --filter=@trike/demo-multi",
"dev:stack": "turbo run dev --filter=@trike/demo-stack",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"licenses:check": "license-checker-rseidelsohn --production --onlyAllow 'MIT;ISC;BSD-2-Clause;BSD-3-Clause;Apache-2.0'"
},
"repository": {
"type": "git",
"url": "https://github.com/SoEasy/trike.git"
},
"keywords": [],
"author": "SoEasy",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoEasy/trike/issues"
},
"homepage": "https://github.com/SoEasy/trike#readme",
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.23.0",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier -w"
]
},
"dependencies": {
"history": "5.3.0",
"tslib": "2.8.1"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "9.39.2",
"@eslint/eslintrc": "3.3.3",
"@microsoft/api-extractor": "7.52.11",
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-typescript": "12.3.0",
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.41.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.0.0",
"husky": "9.1.7",
"license-checker-rseidelsohn": "4.4.2",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"rollup": "4.48.1",
"turbo": "2.6.1",
"typescript": "5.5.4",
"vitest": "3.2.4"
}
}