-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
{
"name": "@erag/lang-sync-inertia",
"version": "1.6.1",
"description": "Unified Vue and React language sync helpers for Laravel Inertia",
"homepage": "https://github.com/eramitgupta/lang-sync-inertia",
"repository": {
"type": "git",
"url": "https://github.com/eramitgupta/lang-sync-inertia.git"
},
"bugs": {
"url": "https://github.com/eramitgupta/lang-sync-inertia/issues"
},
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.cjs",
"prepare": "npm run build",
"lint": "prettier --write \"src/**/*.{ts,tsx,js,json,md}\"",
"lint:check": "prettier --check \"src/**/*.{ts,tsx,js,json,md}\"",
"type-check": "tsc --noEmit",
"release": "release-it",
"upgrade": "npx npm-check-updates -u"
},
"peerDependencies": {
"@inertiajs/core": "^2.0.0 || ^3.0.0",
"@inertiajs/react": "^2.0.0 || ^3.0.0",
"@inertiajs/vue3": "^2.0.0 || ^3.0.0",
"react": "^18.0.0 || ^19.0.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.53.5",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3",
"prettier": "^3.7.4",
"release-it": "^19.1.0"
},
"release-it": {
"git": {
"requireCleanWorkingDir": true
},
"github": {
"release": true,
"host": "github.com",
"repo": "eramitgupta/lang-sync-inertia"
}
}
}