-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.69 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@7nohe/adonis-typed-links",
"description": "Typed link component for AdonisJS with Inertia",
"version": "1.1.0",
"engines": {
"node": ">=20.6.0"
},
"type": "module",
"files": [
"build/src",
"build/generated",
"build/providers",
"build/stubs",
"build/index.d.ts",
"build/index.js",
"build/configure.js",
"build/configure.d.ts"
],
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./hooks/generator_hook": "./build/src/hooks/generator_hook.js",
"./react": "./build/src/react.jsx",
"./vue": "./build/src/vue.js",
"./routes": "./build/generated/routes.js",
"./utils": "./build/src/utils.js"
},
"scripts": {
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"postbuild": "npm run copy:templates",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.17.1",
"@adonisjs/eslint-config": "^2.0.0-beta.7",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^4.0.1",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.10.9",
"@types/node": "^22.10.10",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^9.18.0",
"np": "^10.1.0",
"prettier": "^3.4.2",
"ts-node-maintained": "^10.9.5",
"typescript": "~5.7.2"
},
"peerDependencies": {
"@adonisjs/core": "^6.2.0",
"@inertiajs/react": "^2.0.3",
"@inertiajs/vue3": "^2.0.3",
"react": "^19.0.0",
"vue": "^3.5.10"
},
"author": "Daiki Urata",
"license": "MIT",
"homepage": "https://github.com/7nohe/adonis-typed-links",
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/adonis-typed-links.git"
},
"bugs": {
"url": "https://github.com/7nohe/adonis-typed-links/issues"
},
"keywords": [
"adonis",
"adonisjs",
"inertia",
"inertiajs",
"typescript",
"react",
"vue"
],
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
}
}