This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 KB
/
package.json
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
86
{
"name": "magipoka",
"version": "0.0.3",
"description": "Zero-runtime type-safe routing library",
"keywords": [
"typescript",
"zero-runtime",
"type-safe routing"
],
"bugs": {
"url": "https://github.com/uttk/magipoka/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/uttk/magipoka"
},
"license": "MIT",
"author": "uttk <[email protected]>",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"magipoka": "bin/index.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "node --loader ts-node/esm --experimental-specifier-resolution=node ./src/cli.ts",
"clean": "rimraf dist/",
"test": "vitest run",
"test:watch": "vitest watch",
"build": "yarn run clean && run-p build:*",
"build:cli": "rollup -c",
"build:type": "tsc --emitDeclarationOnly --declaration --outDir dist --project ./tsconfig.json",
"lint": "run-p lint:*",
"lint:tsc": "tsc --noEmit --project ./tsconfig.json",
"lint:eslint": "eslint --cache \"./{src,tests}/**/*.{js,ts}\"",
"lint:prettier": "prettier --check \"./{src,tests}/**/*.{js,ts}\"",
"fix": "run-s fix:*",
"fix:eslint": "eslint --cache --fix \"./{src,tests}/**/*.{js,ts}\"",
"fix:prettier": "prettier --write \"./{src,tests}/**/*.{js,ts}\""
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --cache",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^9.0.0",
"log-symbols": "^5.1.0",
"ora": "^6.1.0",
"prettier": "^2.5.1",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^17.0.17",
"@types/prettier": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"next": "^12.0.10",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.64.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vitest": "^0.3.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}