-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
83
84
85
{
"name": "rutter",
"description": "Framework-agnostic, lightweight router.",
"keywords": [
"framework-agnostic",
"router",
"history-api",
"urlpattern",
"type-safe"
],
"author": "Thiha Thit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thihathit/rutter.git"
},
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.4.0"
},
"files": [
"dist"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"bundle": "tsup",
"preview": "vite preview",
"postinstall": "bash ./.githooks/install.sh",
"pkg:prepare": "tsx --tsconfig ./tsconfig.json ./scripts/build-package-info.ts",
"lint:code": "eslint .",
"lint:type": "tsc",
"lint:package": "publint",
"lint:commit": "commitlint --edit $1",
"format": "pretty-quick --staged",
"format:all": "prettier -c --write ."
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/types": "^17.4.4",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lodash-es": "^4.17.21",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"publint": "^0.1.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.6.3",
"tsx": "^3.12.7",
"typescript": "^4.9.3",
"urlpattern-polyfill": "^6.0.2",
"vite": "^4.1.0",
"vite-tsconfig-paths": "^4.0.5",
"zod": "^3.21.4"
},
"dependencies": {
"@preact/signals-core": "^1.2.3"
}
}